Skip to content

Commit

Permalink
🐛 Fix version search for Unix
Browse files Browse the repository at this point in the history
Fixes #121
  • Loading branch information
Paul Wildenhain authored and pwildenhain committed Aug 18, 2020
1 parent e8927b5 commit 873572a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read(*parts):
def find_version(*file_parts):
version_file = read(*file_parts)
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]$", version_file, re.M
r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M
)
if version_match:
return version_match.group(1)
Expand Down

0 comments on commit 873572a

Please sign in to comment.