From 1bec5019bf5fd2376d2a151a46a5279a479278df Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 26 Jun 2020 19:42:42 +0930 Subject: [PATCH] Install PyQt5 using pip --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 620a0fe7..ce363df7 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -25,7 +25,7 @@ jobs: python -m pip install --upgrade pip if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi # install PyQt5 - sudo apt install -y python3-sip python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebsockets + python -m pip install PyQt5==5.12.3 - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names