Skip to content

Commit

Permalink
Remove python 3.6 (beyond end-of-life) and add python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Dec 21, 2022
1 parent 520968f commit 1fdbcd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version:
- "3.6"
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install tests’ requirements
run: python -m pip install .[test] pytest-xdist
- name: Launch tests
run: python -m pytest -n auto
run: python -m pytest -n auto -W error
- name: Check coding style
run: python -m flake8
- name: Check imports order
Expand Down

0 comments on commit 1fdbcd1

Please sign in to comment.