Skip to content

Commit

Permalink
Release v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Nov 2, 2024
1 parent 94404bb commit 7c88a75
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

wheel-linux-aarch64:
name: Build Linux wheels (Aarch64)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -34,7 +34,7 @@ jobs:

wheel-linux-x86_64:
name: Build Linux wheels (x86-64)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Install build requirements
run: python -m pip install -r .github/workflows/requirements.txt
- name: Build source distribution
run: python setup.py sdist
run: python -m build -s .
- name: Store built source distribution
uses: actions/upload-artifact@v4
with:
Expand All @@ -154,7 +154,7 @@ jobs:
name: sdist
path: dist/
- name: Update pip to latest version
run: python -m pip install -U pip setuptools wheel
run: python -m pip install -U pip
- name: Install built wheel
run: python -m pip install --no-binary pyrodigal --find-links=dist pyrodigal
- name: Run tests without coverage
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
if: "!contains(github.ref, 'rc')"
if: "!contains(github.ref, 'rc') && !contains(github.ref, 'alpha')"
name: Release
needs: upload
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
cython ~=3.0
scikit-build-core
build
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.5.1...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.6.0...HEAD


## [v3.6.0] - 2024-11-02
[v3.6.0]: https://github.com/althonos/pyrodigal/compare/v3.5.1...v3.6.0

### Added
- Support for Python 3.13.

### Changed
- Reorganize project to build with CMake and `scikit-build-core`.
- Build separate Python modules for various SIMD implementations to avoid potential linking issues.

### Fixed
- Pointer dereference issue when calling `TrainingInfo.load` in PyPI or with objects missing a `readinto` method.

### Removed
- Support for Python 3.6.


## [v3.5.2] - 2024-09-04
Expand Down
7 changes: 6 additions & 1 deletion docs/_static/json/switcher.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
[
{
"name": "v3.5 (stable)",
"name": "v3.6 (stable)",
"version": "3.6.0",
"url": "https://pyrodigal.readthedocs.io/en/v3.6.0/"
},
{
"name": "v3.5",
"version": "3.5.2",
"url": "https://pyrodigal.readthedocs.io/en/v3.5.2/"
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pyrodigal"
version = "3.5.1"
version = "3.6.0"
description = "Cython bindings and Python interface to Prodigal, an ORF finder for genomes and metagenomes."
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit 7c88a75

Please sign in to comment.