Skip to content

Commit 591ead6

Browse files
committed
Don't run Python 3.6 test with GitHub actions
But this version is still supported and can be tested locally with tox.
1 parent f944d17 commit 591ead6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3']
12+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3']
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install .[tests]
23+
pip install .[tests] --use-pep517
2424
- name: Lint with flake8
2525
if: matrix.python-version == '3.10'
2626
run: |

0 commit comments

Comments
 (0)