Skip to content

Commit

Permalink
fixed: version python support from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed May 21, 2023
1 parent b965c8e commit 720a7cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
python-version: [3.8]
os: [ubuntu-latest]

steps:
Expand All @@ -26,8 +26,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python3.7 -m pip install PyQt5==5.14
python3.7 -c "from PyQt5.QtCore import QSettings; print('done')"
python3 -m pip install PyQt5==5.14
python3 -c "from PyQt5.QtCore import QSettings; print('done')"
make install
- name: Test
run: make test
Expand Down

0 comments on commit 720a7cb

Please sign in to comment.