Skip to content

Commit cbf59a8

Browse files
authored
Add Python 3.11 release candidate 1 to the testing (#1450)
* Add Python 3.11 release candidate 1 to the testing https://www.python.org/download/pre-releases * Update tests.yml
1 parent 24059a8 commit cbf59a8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28+
- {name: '3.11', python: '3.11-dev', os: ubuntu-latest, tox: py311}
2829
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
2930
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
30-
- { name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38 }
31-
- { name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37 }
32-
- { name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36 }
31+
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
32+
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
33+
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
3334
steps:
3435
- uses: actions/checkout@v3
35-
- uses: actions/setup-python@v3
36+
- uses: actions/setup-python@v4
3637
with:
3738
python-version: ${{ matrix.python }}
3839

3940
- name: update pip
4041
run: |
41-
pip install -U wheel
42-
pip install -U setuptools
43-
python -m pip install -U pip
42+
python -m pip install --upgrade pip
43+
pip install --upgrade setuptools wheel
4444
4545
- name: get pip cache dir
4646
id: pip-cache

0 commit comments

Comments
 (0)