Skip to content

Commit

Permalink
Which Python versions don't have Cython 3 (by default)?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Oct 30, 2024
1 parent f6c8197 commit 6d7634a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
build_wheels:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13]
build: ["cp36-* cp37-* cp38-* cp39-*", "cp310-* cp311-* cp312-*", "cp313-*"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dynamic = [
"Release notes" = "https://pysam.readthedocs.io/en/stable/release.html"

[build-system]
requires = ["setuptools>=59.0", "Cython>=0.29.12,<4"]
requires = ["setuptools>=59.0", "Cython>=3,<4"]
build-backend = "setuptools.build_meta:__legacy__"

[tool.cibuildwheel]
Expand Down
2 changes: 1 addition & 1 deletion pysam/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pysam versioning information
__version__ = "0.22.1"
__version__ = "0.22.90"

__samtools_version__ = "1.21"
__bcftools_version__ = "1.21"
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Cython>=0.29.12,<4
Cython>=3,<4

0 comments on commit 6d7634a

Please sign in to comment.