Skip to content

Commit 03f6230

Browse files
committed
update setup.py
1 parent 2e30e37 commit 03f6230

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(fname: str) -> str:
1313

1414

1515
def find_version() -> str:
16-
version_file = read("src/synthcity/version.py").split("\n")[0]
16+
version_file = read("src/data_suite/version.py").split("\n")[0]
1717
version_re = r"__version__ = \"(?P<version>.+)\""
1818
version_raw = re.match(version_re, version_file)
1919

src/data_suite/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.1.0"
22

33
MAJOR_VERSION = ".".join(__version__.split(".")[:-1])
44
PATCH_VERSION = __version__.split(".")[-1]

0 commit comments

Comments
 (0)