We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e30e37 commit 03f6230Copy full SHA for 03f6230
setup.py
@@ -13,7 +13,7 @@ def read(fname: str) -> str:
13
14
15
def find_version() -> str:
16
- version_file = read("src/synthcity/version.py").split("\n")[0]
+ version_file = read("src/data_suite/version.py").split("\n")[0]
17
version_re = r"__version__ = \"(?P<version>.+)\""
18
version_raw = re.match(version_re, version_file)
19
src/data_suite/version.py
@@ -1,4 +1,4 @@
1
-__version__ = "0.2.0"
+__version__ = "0.1.0"
2
3
MAJOR_VERSION = ".".join(__version__.split(".")[:-1])
4
PATCH_VERSION = __version__.split(".")[-1]
0 commit comments