Skip to content

Commit aaedd36

Browse files
committed
Fix version parsing after switching from single to double quotes.
1 parent 3165a50 commit aaedd36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def get_version(path):
1010
for line in f:
1111
if '__version__' in line:
1212
parts = line.split("=")
13-
return parts[1].split("'")[1]
13+
return parts[1].split('"')[1]
1414

1515

1616
here = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)