Skip to content

Commit

Permalink
Cleanup Python versions used for GitHub Actions
Browse files Browse the repository at this point in the history
GitHub Actions no longer supports Python versions prior to 3.7, including 2.7.

Also, `docs/index.rst` has declared 3.6 to be the minimum supported version
since 06b68d6, and python-fitparse has not compiled with Python 2.7 since
f9ad987 (which uses Python 3.x-only
syntax).
  • Loading branch information
dlenski committed Apr 7, 2023
1 parent c180257 commit 2459451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.5', '3.6', '3.x', 'pypy2', 'pypy3']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.x']

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 2459451

Please sign in to comment.