Skip to content

Commit

Permalink
Remove the outdated Python 3.7 target in GH actions
Browse files Browse the repository at this point in the history
Python 3.7 reached its end of life in June 2023 and is no longer
supported on the latest macOS target.
  • Loading branch information
renatahodovan committed May 19, 2024
1 parent 8627421 commit a6b25de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11.5', '3.12', 'pypy-3.9'] # FIXME: forcing to use py3.11.5 since py3.11.7 causes an inexplicable failure in multiprocessing.
python-version: [3.8, 3.9, '3.10', '3.11.5', '3.12', 'pypy-3.9'] # FIXME: forcing to use py3.11.5 since py3.11.7 causes an inexplicable failure in multiprocessing.
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf input
Expand Down

0 comments on commit a6b25de

Please sign in to comment.