Skip to content

Commit

Permalink
ci: don't test on deprecated python versions
Browse files Browse the repository at this point in the history
Remove Python 3.7 and 3.8 from the CI test matrix, as these versions are
deprecated / EOL. This enables usage of Python 3.9+ features in scripts,
such as str.removeprefix/str.removesuffix, and should cause any issue since
the scripts are always executed manually anyways.

Signed-off-by: Mathieu Choplain <[email protected]>
  • Loading branch information
mathieuchopstm authored and erwango committed Aug 28, 2024
1 parent 4c1adf8 commit 808602c
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 @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python
Expand Down

0 comments on commit 808602c

Please sign in to comment.