Skip to content

Commit

Permalink
Remove Python 3.7 testing
Browse files Browse the repository at this point in the history
Python 3.7 has reached EOL.
  • Loading branch information
mferrera committed Sep 21, 2023
1 parent 315150e commit 4c52202
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
testing:
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest]
include:
- os: macos-latest
Expand All @@ -19,9 +19,13 @@ jobs:
python-version: 3.8
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: "./.github/actions/test_setup"
with:
python-version: ${{ matrix.python-version }}

- name: Run test
run: python -m pytest tests/test_scripts --disable-warnings -x

0 comments on commit 4c52202

Please sign in to comment.