Skip to content

Commit 0eae8a7

Browse files
authored
test: coverage for python 3.14 (#1178)
1 parent a01d933 commit 0eae8a7

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/test-lint.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- os: ubuntu-latest
3232
os-name: 'linux'
3333
python-version: "3.13"
34+
- os: ubuntu-latest
35+
os-name: 'linux'
36+
python-version: "3.14"
3437
# Windows
3538
- os: windows-latest
3639
os-name: 'windows'
@@ -44,10 +47,13 @@ jobs:
4447
- os: windows-latest
4548
os-name: 'windows'
4649
python-version: "3.13"
50+
- os: windows-latest
51+
os-name: 'windows'
52+
python-version: "3.14"
4753
# MacOS - latest only; not enough runners for macOS
4854
- os: macos-latest
4955
os-name: 'macOS'
50-
python-version: "3.13"
56+
python-version: "3.14"
5157
fail-fast: true
5258
runs-on: ${{ matrix.os }}
5359
env:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
2525
"Programming Language :: Python :: 3.13",
26+
"Programming Language :: Python :: 3.14",
2627
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2728
"Topic :: Software Development :: Libraries :: Python Modules",
2829
]
@@ -154,7 +155,7 @@ dependencies = [
154155
]
155156

156157
[[tool.hatch.envs.hatch-test.matrix]]
157-
python = ["3.13", "3.12", "3.11", "3.10"]
158+
python = ["3.14", "3.13", "3.12", "3.11", "3.10"]
158159

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

0 commit comments

Comments
 (0)