We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1eece6 commit 7bf965aCopy full SHA for 7bf965a
setup.py
@@ -13,8 +13,8 @@
13
if version_info < (3, 0, 0):
14
raise SystemExit("binary_python requires must be python 3.0.0 or later.")
15
16
-with open(join(dirname(__file__), "VERSION"), "rb") as f:
17
- version = f.read().decode("ascii").strip()
+with open(join(dirname(__file__), "version"), "rb") as f:
+ version = f.read().strip()
18
19
with open("README.md", "r") as fh:
20
long_description = fh.read()
VERSION versionVERSION renamed to version
0 commit comments