Skip to content

Commit

Permalink
Merge pull request #19111 from nsoranzo/uv_lock_py3.9
Browse files Browse the repository at this point in the history
Run ``uv lock`` under Python 3.9
  • Loading branch information
bgruening authored Nov 6, 2024
2 parents 206b729 + 84742ee commit 3efa4c1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ jobs:
name: Update dependencies
if: github.repository_owner == 'galaxyproject'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
steps:
- uses: actions/checkout@v4
# Install Python 3.8 for update_lint_requirements.sh
# Install Python 3.9 (as default) to allow `uv lock` to generate metadata for rucio-clients
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: |
3.8
3.9
- name: Update dependencies
run: make update-dependencies
- name: Create pull request
Expand Down

0 comments on commit 3efa4c1

Please sign in to comment.