Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wheel build - pin cython<3.0 #1

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
conda config --set always_yes true
conda config --add channels conda-forge
conda create -q -n pyav \
cython \
"cython<3.0" \
numpy \
pillow \
python=${{ matrix.config.python }} \
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
python-version: 3.7
- name: Build source package
run: |
pip install cython
pip install "cython<3.0"
python scripts/fetch-vendor.py /tmp/vendor
PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig python setup.py sdist
- name: Upload source package
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "cython"]
requires = ["setuptools", "wheel", "cython<3.0"]
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
autopep8
Cython
Cython<3.0
editorconfig
flake8
isort
Expand Down