Skip to content

Commit de0aa69

Browse files
committed
ci: Update Python versions
1 parent 7a523a6 commit de0aa69

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -108,41 +108,41 @@ jobs:
108108
### PyQt 5.12 (Python 3.7)
109109
- testenv: py37-pyqt512
110110
os: ubuntu-18.04
111-
python: 3.7
111+
python: "3.7"
112112
### PyQt 5.13 (Python 3.7)
113113
- testenv: py37-pyqt513
114114
os: ubuntu-20.04
115-
python: 3.7
115+
python: "3.7"
116116
### PyQt 5.14 (Python 3.8)
117117
- testenv: py38-pyqt514
118118
os: ubuntu-20.04
119-
python: 3.8
119+
python: "3.8"
120120
### PyQt 5.15.0 (Python 3.9)
121121
- testenv: py39-pyqt5150
122122
os: ubuntu-20.04
123-
python: 3.9
124-
### PyQt 5.15 (Python 3.9, with coverage)
125-
- testenv: py39-pyqt515-cov
123+
python: "3.9"
124+
### PyQt 5.15 (Python 3.10, with coverage)
125+
- testenv: py310-pyqt515-cov
126126
os: ubuntu-20.04
127-
python: 3.9
128-
### PyQt 5.15 (Python 3.10)
129-
- testenv: py310-pyqt515
127+
python: "3.10"
128+
### PyQt 5.15 (Python 3.11)
129+
- testenv: py311-pyqt515
130130
os: ubuntu-20.04
131-
python: 3.10-dev
131+
python: "3.11-dev"
132132
### macOS: PyQt 5.15 (Python 3.9 to match PyInstaller env)
133133
- testenv: py39-pyqt515
134134
os: macos-10.15
135-
python: 3.7
135+
python: "3.9"
136136
args: "tests/unit" # Only run unit tests on macOS
137137
### macOS Big Sur
138138
# - testenv: py39-pyqt515
139139
# os: macos-11.0
140-
# python: 3.9
140+
# python: "3.9"
141141
# args: "tests/unit" # Only run unit tests on macOS
142142
### Windows: PyQt 5.15 (Python 3.9 to match PyInstaller env)
143143
- testenv: py39-pyqt515
144144
os: windows-2019
145-
python: 3.9
145+
python: "3.9"
146146
runs-on: "${{ matrix.os }}"
147147
steps:
148148
- uses: actions/checkout@v2

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ basepython =
2222
py38: {env:PYTHON:python3.8}
2323
py39: {env:PYTHON:python3.9}
2424
py310: {env:PYTHON:python3.10}
25+
py311: {env:PYTHON:python3.11}
2526
deps =
2627
-r{toxinidir}/requirements.txt
2728
-r{toxinidir}/misc/requirements/requirements-tests.txt

0 commit comments

Comments
 (0)