Skip to content

Commit

Permalink
Use pip install pyqt5 for Python 3.7 + macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Sep 30, 2020
1 parent 59b5ee3 commit 160a135
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -68,7 +68,11 @@ jobs:
elif [ "${{ matrix.PYTEST_QT_API }}" = "pyqt4v2" ]; then
conda install -q -y pyqt=4 -c conda-forge
else # pyqt5
conda install -q -y pyqt=5
if [ "${{ matrix.os }}" = "macos-latest" -a "${{ matrix.python-version }}" = "3.7" ]; then
pip install pyqt5
else
conda install -q -y pyqt=5
fi
fi
if [ "${{ matrix.os }}" != "windows-latest" ]; then
conda install -q -y help2man
Expand Down

0 comments on commit 160a135

Please sign in to comment.