Skip to content

Commit

Permalink
Always install requirements (fix windows CI error)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindonroberts committed Nov 3, 2021
1 parent 934ce35 commit e8e6660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v2
Expand All @@ -22,7 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install nose
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -r requirements.txt
- name: Build package
run: |
python setup.py build
Expand Down

0 comments on commit e8e6660

Please sign in to comment.