Skip to content

Commit

Permalink
fix parsing of dependencies with @ in version
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Chan authored and Marvin Chan committed Jul 17, 2022
1 parent c01ff90 commit f6b6566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ def _maybe_retrieve_github_auth() -> Dict[str, str]:

def _install_from_github(package_id: str) -> str:
try:
path, version = package_id.split("@")
path, version = package_id.split("@", 1)
org, repo = path.split("/")
except ValueError:
raise ValueError(
Expand Down

0 comments on commit f6b6566

Please sign in to comment.