Skip to content

Commit

Permalink
Release v3.6.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Nov 2, 2024
1 parent 7034797 commit 65df900
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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 @@ -126,7 +126,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 @@ -149,7 +149,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 @@ -188,7 +188,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
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-alpha1"
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 65df900

Please sign in to comment.