Skip to content

Commit

Permalink
Remove test for 3.7 & 3.8 and add up to 3.13
Browse files Browse the repository at this point in the history
Github complains where it runs the tests:

```
Run actions/setup-python@v2
Version 3.7 was not found in the local cache
Error: Version 3.7 with arch x64 not found
The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
```

3.7 reached eol, 3.8 will soon.
3.12 and 3.13 were not tested.

Fix #74
  • Loading branch information
blogh committed Oct 15, 2024
1 parent 9501bc0 commit 86149a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
strategy:
matrix:
include:
- python: "3.7"
- python: "3.11"
- python: "3.9"
- python: "3.13"
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# the versions specified here are overridden by github workflow
envlist = lint, mypy, py{37,38,39,310,311}
envlist = lint, mypy, py{39,310,311,312,313}
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 86149a3

Please sign in to comment.