Skip to content

Commit 7b14b77

Browse files
committed
Add note about py 3.6 and lock tox env in workflow
1 parent 5ffd984 commit 7b14b77

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12+
# Python 3.6 is not supported by ubuntu-latest
1213
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1314

1415
steps:
@@ -20,4 +21,4 @@ jobs:
2021
- name: Install dependencies
2122
run: pip install tox tox-gh
2223
- name: Test with tox
23-
run: tox
24+
run: tox -e ${{ matrix.python-version }}

0 commit comments

Comments
 (0)