summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-27 17:21:43 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-27 19:24:17 +0100
commitbc0936d97a2ea753590740a5161aa342ceaca0fd (patch)
treea1c05f1414f943b2903b863673721fbb6bfa5e6b
parent88f419b772e839d594befff62e8a8d36cd241b3f (diff)
downloadqutebrowser-bc0936d97a2ea753590740a5161aa342ceaca0fd.tar.gz
qutebrowser-bc0936d97a2ea753590740a5161aa342ceaca0fd.zip
ci: Use Python 3.9 for Windows/macOS
That's what we use with the newer PyInstaller releases, too.
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d8dc5df19..579131eb6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -124,20 +124,20 @@ jobs:
- testenv: py310-pyqt515
os: ubuntu-20.04
python: 3.10-dev
- ### macOS: PyQt 5.15 (Python 3.7 to match PyInstaller env)
- - testenv: py37-pyqt515
+ ### macOS: PyQt 5.15 (Python 3.9 to match PyInstaller env)
+ - testenv: py39-pyqt515
os: macos-10.15
python: 3.7
args: "tests/unit" # Only run unit tests on macOS
### macOS Big Sur
- # - testenv: py37-pyqt515
+ # - testenv: py39-pyqt515
# os: macos-11.0
- # python: 3.7
+ # python: 3.9
# args: "tests/unit" # Only run unit tests on macOS
- ### Windows: PyQt 5.15 (Python 3.7 to match PyInstaller env)
- - testenv: py37-pyqt515
+ ### Windows: PyQt 5.15 (Python 3.9 to match PyInstaller env)
+ - testenv: py39-pyqt515
os: windows-2019
- python: 3.7
+ python: 3.9
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2