Skip to content

Commit

Permalink
Remove redundant python versions and fix test dep install
Browse files Browse the repository at this point in the history
  • Loading branch information
jackleland committed Aug 6, 2024
1 parent 5d347c7 commit 79039bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -19,9 +19,9 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
python -m pip install -e .
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
python -m pip install -e '.[test]'
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 79039bd

Please sign in to comment.