Skip to content

Commit 740615f

Browse files
committed
CI: use the final release of Python 3.11
1 parent 443baab commit 740615f

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

.github/workflows/ci-tests.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
singularity-version: ${{ env.singularity_version }}
4747

4848
- name: Set up Python
49-
if: matrix.py-ver-minor != 11
5049
uses: actions/setup-python@v4
5150
with:
5251
python-version: ${{ env.py-semver }}
@@ -55,16 +54,6 @@ jobs:
5554
requirements.txt
5655
tox.ini
5756
58-
- name: Set up Python 3.11.0-rc.2
59-
if: matrix.py-ver-minor == 11
60-
uses: actions/setup-python@v4
61-
with:
62-
python-version: 3.11.0-rc.2
63-
cache: pip
64-
cache-dependency-path: |
65-
requirements.txt
66-
tox.ini
67-
6857
- name: Upgrade setuptools and install tox
6958
run: |
7059
pip install -U pip setuptools wheel
@@ -96,7 +85,7 @@ jobs:
9685
step: [lint-readme, pydocstyle]
9786

9887
env:
99-
py-semver: "3.10"
88+
py-semver: 3.11
10089
TOXENV: ${{ format('py310-{0}', matrix.step) }}
10190

10291
steps:
@@ -143,7 +132,7 @@ jobs:
143132
- name: Set up Python
144133
uses: actions/setup-python@v4
145134
with:
146-
python-version: "3.10" # quoted, otherwise that turns into the number 3.1
135+
python-version: 3.11
147136

148137
- name: Cache for pip
149138
uses: actions/cache@v3

.github/workflows/tag_to_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Python
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: "3.10" # quoted, otherwise that turns into the number 3.1
31+
python-version: 3.11
3232

3333
- name: Cache for pip
3434
uses: actions/cache@v3

0 commit comments

Comments
 (0)