Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
env:
LIBZIM_VERSION: 6.1.6
LIBZIM_INCLUDE_PATH: include/zim
CYTHON_VERSION: 0.29.6
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
# TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/
Expand Down Expand Up @@ -78,7 +77,7 @@ jobs:

- name: Build cython, sdist, and bdist_wheels
run: |
pip install --upgrade cython==$CYTHON_VERSION setuptools pip wheel
pip install --upgrade "cython>=0.29.20,<3.0" setuptools pip wheel
python3 setup.py build_ext --rpath='$ORIGIN'
if [[ "${{ matrix.python-version }}" == "3.6" ]]
then
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: [push]
env:
LIBZIM_VERSION: 6.1.6
LIBZIM_INCLUDE_PATH: include/zim
CYTHON_VERSION: 0.29.6
MAX_LINE_LENGTH: 110

jobs:
Expand Down Expand Up @@ -98,7 +97,7 @@ jobs:

- name: Build cython, sdist, and bdist_wheel
run: |
pip install --upgrade cython==$CYTHON_VERSION setuptools pip wheel
pip install --upgrade pip install "cython>=0.29.20,<3.0" setuptools pip wheel
python3 setup.py build_ext
python3 setup.py sdist bdist_wheel

Expand Down