Skip to content

Commit

Permalink
block Cython 3.0+ as a build dep
Browse files Browse the repository at this point in the history
* keeps libyaml extension build functional once Cython 3.0 releases; stopgap measure until we can rewrite the extension build to eliminate all the ancient deprecated distutils magic
  • Loading branch information
nitzmahone committed Jul 17, 2023
1 parent 957ae4d commit 43a7c2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ jobs:
run: |
set -eux
python -V
python -m pip install Cython wheel
python -m pip install "Cython<3.0" wheel
python setup.py \
--with-libyaml build_ext \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_artifact_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ jobs:
run: |
set -eux
python -V
python -m pip install Cython wheel
python -m pip install "Cython<3.0" wheel
python setup.py \
--with-libyaml build_ext \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "Cython"]
requires = ["setuptools", "wheel", "Cython<3.0"]
build-backend = "setuptools.build_meta"

0 comments on commit 43a7c2b

Please sign in to comment.