Skip to content

Commit

Permalink
CI: Exclude Python versions that don't support "tuple[...]" yet (but …
Browse files Browse the repository at this point in the history
…only "Tuple[...]".
  • Loading branch information
scoder committed Jan 8, 2024
1 parent 021760e commit ab0f6ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ jobs:
max-parallel: 4
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version:
#- "3.7"
#- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = format,mypy,py37,py38,py39,py310,py311
envlist = format,mypy,py37,py38,py39,py310,py311,py312

[testenv]
commands = pytest {posargs}
Expand Down

0 comments on commit ab0f6ab

Please sign in to comment.