Skip to content

Commit 0887917

Browse files
committedOct 22, 2024·
Release v0.6.0
1 parent 78f7c1e commit 0887917

File tree

5 files changed

+32
-7
lines changed

5 files changed

+32
-7
lines changed
 

‎.github/workflows/package.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
CIBW_BEFORE_BUILD: pip install cython
116116
CIBW_BUILD_VERBOSITY: 2
117117
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
118-
CIBW_TEST_REQUIRES: importlib-resources biopython
118+
CIBW_TEST_REQUIRES: importlib-resources
119119
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.12
120120
with:
121121
output-dir: dist
@@ -148,7 +148,7 @@ jobs:
148148
CIBW_BEFORE_BUILD: pip install cython
149149
CIBW_BUILD_VERBOSITY: 2
150150
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
151-
CIBW_TEST_REQUIRES: importlib-resources biopython
151+
CIBW_TEST_REQUIRES: importlib-resources
152152
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.12
153153
with:
154154
output-dir: dist
@@ -245,6 +245,8 @@ jobs:
245245
environment: PyPI
246246
runs-on: ubuntu-latest
247247
name: Upload
248+
permissions:
249+
id-token: write
248250
needs:
249251
- sdist
250252
- test-sdist

‎CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.5.1...HEAD
9+
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.6.0...HEAD
10+
11+
12+
## [v0.6.0] - 2024-10-22
13+
[v0.6.0]: https://github.com/althonos/pyfastani/compare/v0.5.1...v0.6.0
14+
15+
### Changed
16+
- Rewrite package build using `scikit-build-core`.
17+
- Update documentation to use the PyData theme.
18+
- Bump embedded `cpu-features` library to `v0.9.0`.
19+
20+
### Added
21+
- Support for Python 3.13.
22+
23+
### Fixed
24+
- Null pointer dereference in FASTA parser deallocation.
25+
26+
### Removed
27+
- Support for Python 3.6.
1028

1129

1230
## [v0.5.1] - 2024-02-20

‎docs/_static/json/switcher.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[
22
{
3-
"name": "v0.5 (latest)",
3+
"name": "v0.6 (latest)",
4+
"version": "0.6.0",
5+
"url": "https://pytantan.readthedocs.io/en/v0.6.0/"
6+
},
7+
{
8+
"name": "v0.5",
49
"version": "0.5.1",
510
"url": "https://pytantan.readthedocs.io/en/v0.5.1/"
611
},

‎pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["scikit-build-core", "cython >=3.0", "scoring-matrices ~=0.3.0"]
2+
requires = ["scikit-build-core", "cython >=3.0"]
33
build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pyfastani"
7-
version = "0.5.1"
7+
version = "0.6.0"
88
description = "Cython bindings and Python interface to FastANI, a method for fast whole-genome similarity estimation."
99
readme = "README.md"
1010
requires-python = ">=3.7"

‎src/pyfastani/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
__author__ = "Martin Larralde <martin.larralde@embl.de>"
1414
__license__ = "MIT"
15-
__version__ = "0.5.1"
15+
__version__ = "0.6.0"
1616

1717
__doc__ = _fastani.__doc__
1818
__all__ = [

0 commit comments

Comments
 (0)
Please sign in to comment.