Skip to content

Commit

Permalink
Fix version parsing (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedingber committed Aug 23, 2020
1 parent a7f2e72 commit f559656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def version():
for line in fp:
if "__version__" in line:
_, version = line.split("=")
return version.replace("'", "").strip()
return version.replace("\"", "").strip()


def is_ignored(line):
Expand Down

0 comments on commit f559656

Please sign in to comment.