Skip to content

Commit

Permalink
fix: issue with editable plugins (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Aug 18, 2022
1 parent 656b987 commit a742bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(self) -> None:
editable_key = "__editable___"
if name.startswith(f"{editable_key}ape_"):
# Handle strange editable install behavior
pattern = rf"{editable_key}(\w*)(_\d+_\d+_\d+a?\d*_dev\d+_[a-z|\d]{{8}}_finder)"
pattern = rf"{editable_key}(\w*)(_\d+_\d+_\d+a?\d*_dev\d+_\w*_finder)"
match = re.match(pattern, name)
if not match:
continue
Expand Down

0 comments on commit a742bbd

Please sign in to comment.