Add python 3.11 to the tests and reduce version coverage

* Add python 3.11 to the test environnements
* Use only the oldest and latest versions for github workfkows
This commit is contained in:
benoit 2023-03-20 12:06:07 +01:00 committed by Benoit
parent df744bf7dc
commit 7eb65ae903
2 changed files with 3 additions and 4 deletions

View file

@ -9,9 +9,7 @@ jobs:
matrix:
include:
- python: "3.7"
- python: "3.8"
- python: "3.9"
- python: "3.10"
- python: "3.11"
steps:
- uses: actions/checkout@v2
- name: Setup Python

View file

@ -1,5 +1,6 @@
[tox]
envlist = lint, mypy, py{37,38,39,310}
# the versions specified here are overridden by github workflow
envlist = lint, mypy, py{37,38,39,310,311}
skip_missing_interpreters = True
[testenv]