Skip to content

Commit

Permalink
ci: Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Compiler committed Apr 26, 2022
1 parent 7a523a6 commit de0aa69
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,41 +108,41 @@ jobs:
### PyQt 5.12 (Python 3.7)
- testenv: py37-pyqt512
os: ubuntu-18.04
python: 3.7
python: "3.7"
### PyQt 5.13 (Python 3.7)
- testenv: py37-pyqt513
os: ubuntu-20.04
python: 3.7
python: "3.7"
### PyQt 5.14 (Python 3.8)
- testenv: py38-pyqt514
os: ubuntu-20.04
python: 3.8
python: "3.8"
### PyQt 5.15.0 (Python 3.9)
- testenv: py39-pyqt5150
os: ubuntu-20.04
python: 3.9
### PyQt 5.15 (Python 3.9, with coverage)
- testenv: py39-pyqt515-cov
python: "3.9"
### PyQt 5.15 (Python 3.10, with coverage)
- testenv: py310-pyqt515-cov
os: ubuntu-20.04
python: 3.9
### PyQt 5.15 (Python 3.10)
- testenv: py310-pyqt515
python: "3.10"
### PyQt 5.15 (Python 3.11)
- testenv: py311-pyqt515
os: ubuntu-20.04
python: 3.10-dev
python: "3.11-dev"
### macOS: PyQt 5.15 (Python 3.9 to match PyInstaller env)
- testenv: py39-pyqt515
os: macos-10.15
python: 3.7
python: "3.9"
args: "tests/unit" # Only run unit tests on macOS
### macOS Big Sur
# - testenv: py39-pyqt515
# os: macos-11.0
# python: 3.9
# python: "3.9"
# args: "tests/unit" # Only run unit tests on macOS
### Windows: PyQt 5.15 (Python 3.9 to match PyInstaller env)
- testenv: py39-pyqt515
os: windows-2019
python: 3.9
python: "3.9"
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ basepython =
py38: {env:PYTHON:python3.8}
py39: {env:PYTHON:python3.9}
py310: {env:PYTHON:python3.10}
py311: {env:PYTHON:python3.11}
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/misc/requirements/requirements-tests.txt
Expand Down

0 comments on commit de0aa69

Please sign in to comment.