Skip to content

Commit

Permalink
Merge pull request #19146 from nsoranzo/uv_fixes
Browse files Browse the repository at this point in the history
2 small uv config fixes
  • Loading branch information
dannon authored Nov 15, 2024
2 parents 5ab07ff + d24ae97 commit bf5e8cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ uv="${uv_venv}/bin/uv"
if [ -n "$pkg" ]; then
${uv} lock --upgrade-package "$pkg"
else
${uv} lock
${uv} lock --upgrade
fi

# Update pinned requirements files.
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ dev = [
"pytest-shard",
"responses",
"rucio-clients>=33.6.0 ; python_version>='3.9'", # https://github.com/galaxyproject/galaxy/pull/17156
"scipy>=1.14.1; python_version>='3.10'", # ase dependency, Python 3.13 support
"selenium",
"seletools",
"Sphinx>=4.0", # support docutils 0.17
Expand Down Expand Up @@ -238,6 +237,9 @@ keep-runtime-typing = true
"lib/tool_shed_client/schema/trs_service_info.py" = ["UP006", "UP007"]

[tool.uv]
constraint-dependencies = [
"scipy>=1.14.1; python_version>='3.10'", # Python 3.13 support
]
default-groups = []
extra-index-url = ["https://wheels.galaxyproject.org/simple"]
index-strategy = "unsafe-best-match"
Expand Down

0 comments on commit bf5e8cb

Please sign in to comment.