Skip to content

Commit

Permalink
Merge pull request #1582 from marv-chan/repo_version_bug
Browse files Browse the repository at this point in the history
fix parsing of dependencies with @ in version
  • Loading branch information
charles-cooper committed Jul 18, 2022
2 parents 8dbd7f0 + f6b6566 commit b2da967
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 b2da967

Please sign in to comment.