Skip to content

Commit

Permalink
fix "if" statement for Windows, Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed Mar 11, 2022
1 parent ba7f0d4 commit 4bd0fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
python -m pip install --upgrade setuptools wheel
python -m pip install --upgrade ${{ matrix.qt-binding }}
- name: Install pythonnet from a commit (Windows, Python 3.9)
if: ${{ matrix.os == 'windows' }} && ${{ matrix.python-version == '3.9' }}
if: ${{ (matrix.os == 'windows' && matrix.python-version == '3.9') }}
run: python -m pip install --upgrade git+https://github.com/pythonnet/pythonnet.git@76378845d6749a31ea9de187db634c48c2e82a9f
- name: Install package
run: python -m pip install --upgrade --editable .[tests]
Expand Down

0 comments on commit 4bd0fd0

Please sign in to comment.