Skip to content

Commit

Permalink
fix: add prefix to scipp nightly dep
Browse files Browse the repository at this point in the history
  • Loading branch information
jokasimr committed Jul 23, 2024
1 parent f732389 commit ee8ff5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion template/requirements/make_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def as_nightly(repo: str) -> str:
version = f"cp{sys.version_info.major}{sys.version_info.minor}"
base = "https://github.com/scipp/scipp/releases/download/nightly/scipp-nightly"
suffix = "manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
return "-".join([base, version, version, suffix])
prefix = "scipp @ "
return prefix + "-".join([base, version, version, suffix])
return f"{repo} @ git+https://github.com/{org}/{repo}@main"


Expand Down

0 comments on commit ee8ff5b

Please sign in to comment.