From bc0936d97a2ea753590740a5161aa342ceaca0fd Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 27 Jan 2021 17:21:43 +0100 Subject: ci: Use Python 3.9 for Windows/macOS That's what we use with the newer PyInstaller releases, too. --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.github') 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 -- cgit v1.2.3-54-g00ecf