Skip to content

Commit

Permalink
CI: Use old pyqt5 version to see if linux still crashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosperate committed Dec 28, 2023
1 parent 0e71949 commit a0d7a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-11, macos-latest, windows-2019, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12.0']
fail-fast: false
runs-on: ${{ matrix.os }}
name: Test Py ${{ matrix.python-version }} - ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
# The core 'install_requires' should only be things
# which are needed for the main editor to function.
#
"PyQt5==5.15.10"
"PyQt5==5.14.2"
+ ';"arm" not in platform_machine and "aarch" not in platform_machine',
"QScintilla==2.14.1"
"QScintilla==2.11.4"
+ ';"arm" not in platform_machine and "aarch" not in platform_machine',
"PyQtChart==5.15.6"
"PyQtChart==5.14.0"
+ ';"arm" not in platform_machine and "aarch" not in platform_machine',
# ipykernel has to be < v6 for macOS 10.13 compatibility (v6 depends on
# debugpy package), v5.5.6 resolves issue ipython/ipykernel#759.
Expand Down

0 comments on commit a0d7a7e

Please sign in to comment.