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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ "3.10", 3.13 ]
python: [ "3.10", 3.14 ]
os: [ macos-latest, ubuntu-24.04, windows-latest ]
defaults:
run:
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:

- name: Build distribution
run: |
uv run --no-sync python -m build
uv run --no-sync python -m build
7 changes: 3 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
python: ["3.10", 3.13]
python: ["3.10", 3.14]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: ["3.10", 3.13]
python: ["3.10", 3.14]
wordsize: [64]
steps:
- name: Download wheels
Expand All @@ -93,7 +93,7 @@ jobs:
needs: ['manylinux']
strategy:
matrix:
python: ["3.10", 3.13]
python: ["3.10", 3.14]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.2.0
Expand Down Expand Up @@ -135,4 +135,3 @@ jobs:
- name: Publish distribution to PRODUCTION PyPI
if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@v1.13.0

5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [Unreleased]

- Add support for Python 3.14.

## [0.2.4] - 2025-09-18

- Add support for Python 3.13, minimum version is now 3.10.
Expand Down Expand Up @@ -256,4 +260,3 @@ Early Alpha release made available via PyPI for community testing and evaluation

Please don't use this version in published works.


1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
Expand Down
Loading