Skip to content

Commit 087723e

Browse files
authored
chore(setup): fix dev setup version (#1240)
1 parent ea29771 commit 087723e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
try:
1515
version = (source_root / "VERSION").read_text().rstrip("\n")
1616
except FileNotFoundError:
17-
version = "dev"
17+
version = "0.0.dev0"
1818

1919
with open(source_root / "src/pandas_profiling/version.py", "w") as version_file:
2020
version_file.write(f"__version__ = '{version}'")

0 commit comments

Comments
 (0)