Skip to content

Commit

Permalink
CI: Windows doesn't have python2 alias
Browse files Browse the repository at this point in the history
  • Loading branch information
martingalloar committed Jun 1, 2021
1 parent f329b2d commit 3735b71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,16 @@ jobs:
- name: Install Python dependencies
run: |
python2 -m pip install --upgrade pip wheel
python2 -m pip install -r requirements.txt
python -m pip install --upgrade pip wheel
python -m pip install -r requirements.txt
- name: Run unit tests
run: |
python2 setup.py test
python setup.py test
- name: Build wheel artifact
run: |
python2 setup.py bdist_wheel
python setup.py bdist_wheel
- name: Upload wheel artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 3735b71

Please sign in to comment.