Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
architecture: [x64, x86]
env:
# TODO: We can't yet run tests with PYTHONDEVMODE=1, let's emulated it as much as we can
# TODO: We can't yet run tests with PYTHONDEVMODE=1, let's emulate it as much as we can
# https://docs.python.org/3/library/devmode.html#effects-of-the-python-development-mode
PYTHONMALLOC: debug
PYTHONASYNCIODEBUG: 1
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
fail-fast: false
matrix:
# pythonarm64 NuGet's has no download for Python ~=3.9.11
python-version: ["3.9.10", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9.10", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
Expand All @@ -191,7 +191,8 @@ jobs:
allow-prereleases: true
- run: pip install types-setuptools PyOpenGL mypy==1.16.*

- run: mypy . --python-version=${{ matrix.python-version }}
- if: matrix.python-version != '3.14t'
run: mypy . --python-version=${{ matrix.python-version }}

- uses: jakebailey/pyright-action@v2
with:
Expand Down
Loading