Skip to content

Commit fcd90bf

Browse files
committed
Use RC version for Python 3.10
Apparently, 3.10-dev isn't available anymore?
1 parent dd711c0 commit fcd90bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
platform: [ubuntu-latest, windows-latest]
15-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev]
15+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
1616

1717
env:
1818
PY_COLORS: 1
@@ -45,7 +45,7 @@ jobs:
4545
sudo apt install ffmpeg # For replaygain
4646
4747
- name: Test older Python versions with tox
48-
if: matrix.python-version != '3.9' && matrix.python-version != '3.10-dev'
48+
if: matrix.python-version != '3.9' && matrix.python-version != '3.10.0-rc.2'
4949
run: |
5050
tox -e py-test
5151
@@ -55,7 +55,7 @@ jobs:
5555
tox -vv -e py-cov
5656
5757
- name: Test nightly Python version with tox
58-
if: matrix.python-version == '3.10-dev'
58+
if: matrix.python-version == '3.10.0-rc.2'
5959
# continue-on-error is not ideal since it doesn't give a visible
6060
# warning, but there doesn't seem to be anything better:
6161
# https://github.com/actions/toolkit/issues/399

0 commit comments

Comments
 (0)