We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7964eff commit 198f6e8Copy full SHA for 198f6e8
setup.py
@@ -8,7 +8,7 @@
8
with open(os.path.join("numpydoc", "_version.py")) as fid:
9
for line in (line.strip() for line in fid):
10
if line.startswith("__version__"):
11
- version = line.split("=")[1].strip().strip("'")
+ version = line.split("=")[1].strip().strip('"')
12
break
13
if version is None:
14
raise RuntimeError("Could not determine version")
0 commit comments