Skip to content

Commit

Permalink
fix: use macos-13 for python 3.9
Browse files Browse the repository at this point in the history
Additionally bumps the pyqt5-qt5 version to fix the pinned tests.

refs: #568
  • Loading branch information
tc85324 committed Apr 24, 2024
1 parent 44b2ba8 commit 3c6594c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
- ubuntu-latest
- windows-latest
- macos-latest
# macos-latest does not support python 3.9
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
exclude:
- { python-version: "3.9", os: "macos-latest" }
include:
- { python-version: "3.9", os: "macos-13" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pylint==3.0.3; python_full_version >= '3.8.0'
pyparsing==3.1.1; python_full_version >= '3.6.8'
pyproject-hooks==1.0.0; python_version >= '3.7'
pyqt5==5.15.10; python_version >= '3.7'
pyqt5-qt5==5.15.2
pyqt5-qt5==5.15.13
pyqt5-sip==12.13.0; python_version >= '3.7'
pyroma==4.2; python_version >= '3.7'
pytest==7.4.4; python_version >= '3.7'
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pillow==10.3.0; python_version >= '3.8'
pluggy==1.4.0; python_version >= '3.8'
pyparsing==3.1.1; python_full_version >= '3.6.8'
pyqt5==5.15.10; python_version >= '3.7'
pyqt5-qt5==5.15.2
pyqt5-qt5==5.15.13
pyqt5-sip==12.13.0; python_version >= '3.7'
pytest==7.4.4; python_version >= '3.7'
pytest-cov==4.1.0; python_version >= '3.7'
Expand Down

0 comments on commit 3c6594c

Please sign in to comment.