Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
name: Test with python ${{ matrix.python-version }} / ${{ matrix.os-version }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
os-version: ["ubuntu-latest", "windows-latest"]
exclude:
- os-version: windows-latest
include:
- os-version: windows-latest
python-version: 3.13
python-version: 3.14

runs-on: ${{ matrix.os-version }}

Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[tox]
envlist =
py38
py39
py310
py311
py312
py313
py314

base_python = py311
base_python = py312

isolated_build = true

Expand Down
6 changes: 4 additions & 2 deletions tox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ let

in pkgs.mkShell {
buildInputs = with pkgs; [
(basePython python311)
(basePython python312)
(toxPython python314)
(toxPython python313)
(toxPython python311)
(toxPython python310)
(toxPython python39)
(toxPython python38)

bashInteractive
];
Expand Down