Skip to content

Commit

Permalink
Fix supported platforms regex
Browse files Browse the repository at this point in the history
This was preventing (many)linux wheels from downloading, since
there was an unintentional leading `r` in the regex.
  • Loading branch information
i077 authored and ido50 committed Sep 22, 2022
1 parent 7c4eb59 commit 437cc07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion morgan/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.0"
__version__ = "0.12.1"
2 changes: 1 addition & 1 deletion morgan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, index_path: str):
self.envs[m.group(1)] = dict(env)
self._supported_pyversions.append(env["python_version"])
self._supported_platforms.append(
re.compile("r.*" +
re.compile(r".*" +
env["sys_platform"] +
r".*" +
env["platform_machine"]))
Expand Down

0 comments on commit 437cc07

Please sign in to comment.