Skip to content

Commit 0059469

Browse files
committed
CI: use the final release of Python 3.11
except for wheel building as mypyc doesn't fully support Python 3.11
1 parent 3a9b570 commit 0059469

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/ci-tests.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,13 @@ jobs:
3535
- uses: actions/checkout@v3
3636

3737
- name: Set up Python
38-
if: matrix.py-ver-minor != 11
3938
uses: actions/setup-python@v4
4039
with:
4140
python-version: ${{ env.py-semver }}
42-
43-
- name: Set up Python 3.11.0-rc.2
44-
if: matrix.py-ver-minor == 11
45-
uses: actions/setup-python@v4
46-
with:
47-
python-version: 3.11.0-rc.2
48-
49-
50-
- name: Cache for pip
51-
uses: actions/cache@v3
52-
with:
53-
path: ~/.cache/pip
54-
key: ${{ runner.os }}-pip-${{ matrix.step }}-${{ hashFiles('requirements.txt', 'tox.ini') }}
41+
cache: pip
42+
cache-dependency-path: |
43+
requirements.txt
44+
tox.ini
5545
5646
- name: Upgrade setuptools and install tox
5747
run: |

0 commit comments

Comments
 (0)