Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jul 22, 2023
1 parent 258ec5a commit 87b0f90
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyfastani/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = "Martin Larralde <[email protected]>"
__license__ = "MIT"
__version__ = "0.4.1"
__version__ = "0.5.0"

__doc__ = _fastani.__doc__
__all__ = [
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 87b0f90

Please sign in to comment.