Skip to content

Commit 7c88a75

Browse files
committed
Release v3.6.0
1 parent 94404bb commit 7c88a75

File tree

5 files changed

+31
-8
lines changed

5 files changed

+31
-8
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
wheel-linux-aarch64:
1111
name: Build Linux wheels (Aarch64)
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:
@@ -34,7 +34,7 @@ jobs:
3434

3535
wheel-linux-x86_64:
3636
name: Build Linux wheels (x86-64)
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-22.04
3838
steps:
3939
- uses: actions/checkout@v4
4040
with:
@@ -131,7 +131,7 @@ jobs:
131131
- name: Install build requirements
132132
run: python -m pip install -r .github/workflows/requirements.txt
133133
- name: Build source distribution
134-
run: python setup.py sdist
134+
run: python -m build -s .
135135
- name: Store built source distribution
136136
uses: actions/upload-artifact@v4
137137
with:
@@ -154,7 +154,7 @@ jobs:
154154
name: sdist
155155
path: dist/
156156
- name: Update pip to latest version
157-
run: python -m pip install -U pip setuptools wheel
157+
run: python -m pip install -U pip
158158
- name: Install built wheel
159159
run: python -m pip install --no-binary pyrodigal --find-links=dist pyrodigal
160160
- name: Run tests without coverage
@@ -193,7 +193,7 @@ jobs:
193193
runs-on: ubuntu-latest
194194
permissions:
195195
contents: write
196-
if: "!contains(github.ref, 'rc')"
196+
if: "!contains(github.ref, 'rc') && !contains(github.ref, 'alpha')"
197197
name: Release
198198
needs: upload
199199
steps:

.github/workflows/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
cython ~=3.0
22
scikit-build-core
3+
build

CHANGELOG.md

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

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.5.1...HEAD
9+
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v3.6.0...HEAD
10+
11+
12+
## [v3.6.0] - 2024-11-02
13+
[v3.6.0]: https://github.com/althonos/pyrodigal/compare/v3.5.1...v3.6.0
14+
15+
### Added
16+
- Support for Python 3.13.
17+
18+
### Changed
19+
- Reorganize project to build with CMake and `scikit-build-core`.
20+
- Build separate Python modules for various SIMD implementations to avoid potential linking issues.
21+
22+
### Fixed
23+
- Pointer dereference issue when calling `TrainingInfo.load` in PyPI or with objects missing a `readinto` method.
24+
25+
### Removed
26+
- Support for Python 3.6.
1027

1128

1229
## [v3.5.2] - 2024-09-04

docs/_static/json/switcher.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[
22
{
3-
"name": "v3.5 (stable)",
3+
"name": "v3.6 (stable)",
4+
"version": "3.6.0",
5+
"url": "https://pyrodigal.readthedocs.io/en/v3.6.0/"
6+
},
7+
{
8+
"name": "v3.5",
49
"version": "3.5.2",
510
"url": "https://pyrodigal.readthedocs.io/en/v3.5.2/"
611
},

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pyrodigal"
7-
version = "3.5.1"
7+
version = "3.6.0"
88
description = "Cython bindings and Python interface to Prodigal, an ORF finder for genomes and metagenomes."
99
readme = "README.md"
1010
requires-python = ">=3.7"

0 commit comments

Comments
 (0)