Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- os: ubuntu-latest
os-name: 'linux'
python-version: "3.13"
- os: ubuntu-latest
os-name: 'linux'
python-version: "3.14"
# Windows
- os: windows-latest
os-name: 'windows'
Expand All @@ -41,10 +44,13 @@ jobs:
- os: windows-latest
os-name: 'windows'
python-version: "3.13"
- os: windows-latest
os-name: 'windows'
python-version: "3.14"
# MacOS - latest only; not enough runners for macOS
- os: macos-latest
os-name: 'macOS'
python-version: "3.13"
python-version: "3.14"
fail-fast: true
runs-on: ${{ matrix.os }}
env:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -138,7 +139,7 @@ dependencies = [
]

[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.13", "3.12", "3.11", "3.10"]
python = ["3.14", "3.13", "3.12", "3.11", "3.10"]

[tool.hatch.envs.hatch-test.scripts]
run = "pytest{env:HATCH_TEST_ARGS:} {args}" # Run with: hatch test
Expand Down
Loading