Skip to content

Commit c20abd0

Browse files
committed
Add Python 3.14 to build matrix and classifiers
1 parent 7335470 commit c20abd0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-24.04, macos-latest]
16-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
"Programming Language :: C++",
3031
"Topic :: Scientific/Engineering :: Bio-Informatics",
3132
]
@@ -57,7 +58,7 @@ ninja.make-fallback = true
5758
CMAKE_BUILD_TYPE = "Release"
5859

5960
[tool.cibuildwheel]
60-
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
61+
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
6162
skip = "*-musllinux_* *-win32 *-manylinux_i686"
6263
test-requires = ["pytest"]
6364
test-command = "mkdir -p /tmp/hptest/data && cp -r {project}/tests /tmp/hptest/ && cp {project}/data/pbmc_3500_*.tsv.gz /tmp/hptest/data/ && cd /tmp/hptest && pytest tests/test_harmony.py::test_run_harmony_small -v"

0 commit comments

Comments
 (0)