Skip to content

Commit 479e4b5

Browse files
authored
ci: use python 3.13 in upgrade requirements workflow (#223)
1 parent e34928b commit 479e4b5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/upgrade-requirements.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,26 @@ jobs:
2222
runs-on: ubuntu-24.04
2323
steps:
2424
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25-
- name: Set up Python 3.10 and 3.12
25+
- name: Set up Python 3.10 and 3.13
2626
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
2727
with:
2828
python-version: |
2929
3.10
30-
3.12
30+
3.13
3131
cache: pip
3232
- run: |
3333
python3.10 --version
34-
python3.12 --version
34+
python3.13 --version
3535
- name: Install pre-requisites (e.g. hatch)
3636
run: python -m pip install --require-hashes --requirement=requirements/ci
3737
- name: Upgrade ci requirements (using Python 3.10 for compatibility)
3838
run: |
3939
rm requirements/ci
4040
HATCH_PYTHON=3.10 hatch env run --env ci -- python --version
41-
- name: Upgrade docs requirements (using Python 3.12)
41+
- name: Upgrade docs requirements (using Python 3.13)
4242
run: |
4343
rm requirements/docs
44-
HATCH_PYTHON=3.12 hatch env run --env docs -- python --version
44+
HATCH_PYTHON=3.13 hatch env run --env docs -- python --version
4545
# Ref: https://github.com/peter-evans/create-pull-request
4646
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
4747
with:

0 commit comments

Comments
 (0)