Skip to content

Commit c59d493

Browse files
committed
Release v0.8.5
1 parent fa7685f commit c59d493

4 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pytrimal/compare/v0.8.4...HEAD
9+
[Unreleased]: https://github.com/althonos/pytrimal/compare/v0.8.5...HEAD
10+
11+
12+
## [v0.8.5] - 2025-11-25
13+
[v0.8.5]: https://github.com/althonos/pytrimal/compare/v0.8.4...v0.8.5
14+
15+
### Added
16+
- Support for Python 3.14.
17+
18+
### Fixed
19+
- Compilation failing on Python 3.14 due to syntax error in f-string ([#7](https://github.com/althonos/pytrimal/issues/7)).
20+
- Compilation failing on PyPy due to an invalid cast in `PyUnicode_FSConverter`.
1021

1122

1223
## [v0.8.4] - 2025-09-08

docs/_static/json/switcher.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[
22
{
33
"name": "v0.8 (latest)",
4-
"version": "0.8.4",
5-
"url": "https://pytrimal.readthedocs.io/en/v0.8.4/"
4+
"version": "0.8.5",
5+
"url": "https://pytrimal.readthedocs.io/en/v0.8.5/"
66
},
77
{
88
"name": "v0.7",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pytrimal"
7-
version = "0.8.4"
7+
version = "0.8.5"
88
description = "Cython bindings and Python interface to trimAl, a tool for automated alignment trimming."
99
readme = "README.md"
1010
requires-python = ">=3.7"
@@ -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 :: Python :: Implementation :: CPython",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"Topic :: Scientific/Engineering :: Bio-Informatics",
@@ -85,7 +86,6 @@ build-frontend = { name = "pip", args = ["--no-build-isolation"] }
8586
build-verbosity = 1
8687
test-command = "python -m unittest pytrimal.tests -v"
8788
test-extras = ["test"]
88-
free-threaded-support = false
8989

9090
[[tool.cibuildwheel.overrides]]
9191
select = "*-macosx_x86_64"

src/pytrimal/_version.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)