Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Drop Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPalard committed Mar 30, 2023
1 parent df2a0a5 commit e6e870b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ jobs:
strategy:
matrix:
tox:
- py_version: '3.6'
env: py36
- py_version: '3.7'
env: py37
- py_version: '3.8'
env: py38,flake8,mypy,black,pylint,pydocstyle
env: py38
- py_version: '3.9'
env: py39
- py_version: '3.10'
env: py310
- py_version: '3.11'
env: py311,flake8,mypy,black,pylint,pydocstyle
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -39,4 +41,4 @@ jobs:
- name: Install tox
run: python3 -m pip install tox
- name: Run tox
run: tox -q -p all -e ${{ matrix.tox.env }}
run: tox -q -e ${{ matrix.tox.env }}
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ignore = E203
max-line-length = 88

[tox]
envlist = py36, py37, py38, py39, py310, flake8, mypy, black, pydocstyle
envlist = py37, py38, py39, py310, py311, flake8, mypy, black, pydocstyle
isolated_build = True
skip_missing_interpreters = True

Expand Down

0 comments on commit e6e870b

Please sign in to comment.