Skip to content

Commit ab0f6ab

Browse files
committed
CI: Exclude Python versions that don't support "tuple[...]" yet (but only "Tuple[...]".
1 parent 021760e commit ab0f6ab

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/python-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ jobs:
2727
max-parallel: 4
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
30+
python-version:
31+
#- "3.7"
32+
#- "3.8"
33+
- "3.9"
34+
- "3.10"
35+
- "3.11"
36+
- "3.12"
3137
steps:
3238
- uses: actions/checkout@v3
3339
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = format,mypy,py37,py38,py39,py310,py311
2+
envlist = format,mypy,py37,py38,py39,py310,py311,py312
33

44
[testenv]
55
commands = pytest {posargs}

0 commit comments

Comments
 (0)