There was an error while loading. Please reload this page.
2 parents 54ba44e + dfc28ef commit f225dedCopy full SHA for f225ded
1 file changed
setup.py
@@ -1,7 +1,11 @@
1
import os
2
from setuptools import setup
3
4
-version = os.environ.get("VERSION", "1.0.dev0")
+# Source builds stamp a version ABOVE every date release. Intra-family deps
5
+# carry `>=` floors, so a low dev stamp (the old "1.0.dev0") makes a local
6
+# checkout unsatisfiable against its own siblings. Release builds always set
7
+# VERSION explicitly, so this default is never published.
8
+version = os.environ.get("VERSION", "9999.0.0.dev0")
9
10
setup(
11
version=version,
0 commit comments