Skip to content
Snippets Groups Projects
Commit 87b0f905 authored by Martin Larralde's avatar Martin Larralde
Browse files

Release v0.5.0

parent 258ec5a8
No related branches found
Tags v0.5.0
No related merge requests found
......@@ -39,7 +39,7 @@ jobs:
CIBW_BUILD_VERBOSITY: 2
CIBW_BEFORE_BUILD: pip install cython
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
CIBW_TEST_REQUIRES: importlib-resources biopython scikit-bio
CIBW_TEST_REQUIRES: importlib-resources biopython
with:
output-dir: dist
- uses: actions/upload-artifact@v3
......@@ -78,7 +78,7 @@ jobs:
CIBW_BEFORE_BUILD: pip install cython
CIBW_BUILD_VERBOSITY: 2
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
CIBW_TEST_REQUIRES: importlib-resources biopython scikit-bio
CIBW_TEST_REQUIRES: importlib-resources biopython
with:
output-dir: dist
- uses: actions/upload-artifact@v3
......@@ -117,7 +117,7 @@ jobs:
CIBW_BEFORE_BUILD: pip install cython
CIBW_BUILD_VERBOSITY: 2
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
CIBW_TEST_REQUIRES: importlib-resources biopython scikit-bio
CIBW_TEST_REQUIRES: importlib-resources biopython
with:
output-dir: dist
- uses: actions/upload-artifact@v3
......@@ -152,7 +152,7 @@ jobs:
CIBW_BEFORE_BUILD: pip install cython
CIBW_BUILD_VERBOSITY: 2
CIBW_TEST_COMMAND: python -m unittest pyfastani.tests -vv
CIBW_TEST_REQUIRES: importlib-resources biopython scikit-bio
CIBW_TEST_REQUIRES: importlib-resources biopython
with:
output-dir: dist
- uses: actions/upload-artifact@v3
......
......@@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.4.1...HEAD
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.5.0...HEAD
## [v0.5.0] - 2023-07-22
[v0.5.0]: https://github.com/althonos/pyfastani/compare/v0.4.1...v0.5.0
### Changed
- Bump Cython dependency to `v3.0`.
### Fixed
- Add missing signature of `Sketch.index` to type stubs.
- PyPy builds failing on missing `PyInterpreterState_GetID` function.
## [v0.4.1] - 2022-08-20
......
......@@ -12,7 +12,7 @@ from ._fastani import (
__author__ = "Martin Larralde <martin.larralde@embl.de>"
__license__ = "MIT"
__version__ = "0.4.1"
__version__ = "0.5.0"
__doc__ = _fastani.__doc__
__all__ = [
......
......@@ -27,6 +27,7 @@ classifier =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment