Merge pull request #470 from misl6/bump-cython-version

Bumps Cython version
This commit is contained in:
Andre Miras 2020-05-03 14:58:46 +02:00 committed by GitHub
commit b7f5893066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@ jobs:
pip3 install -r requirements.txt pip3 install -r requirements.txt
brew install autoconf automake libtool pkg-config brew install autoconf automake libtool pkg-config
brew link libtool brew link libtool
pip3 install Cython==0.28.1 pip3 install Cython==0.29.17
gem install xcpretty gem install xcpretty
- name: Build Python & Kivy - name: Build Python & Kivy
run: | run: |
@ -64,7 +64,7 @@ jobs:
pip install sh pip install sh
brew install autoconf automake libtool pkg-config brew install autoconf automake libtool pkg-config
brew link libtool brew link libtool
pip install Cython==0.28.1 pip install Cython==0.29.17
- name: Build Python & Kivy - name: Build Python & Kivy
run: | run: |
. venv/bin/activate . venv/bin/activate
@ -85,7 +85,7 @@ jobs:
pip3 install -r requirements.txt pip3 install -r requirements.txt
brew install autoconf automake libtool pkg-config brew install autoconf automake libtool pkg-config
brew link libtool brew link libtool
pip3 install Cython==0.28.1 pip3 install Cython==0.29.17
- name: Build updated recipes - name: Build updated recipes
run: | run: |
python3 .ci/rebuild_updated_recipes.py python3 .ci/rebuild_updated_recipes.py

View file

@ -44,10 +44,10 @@ Currently, the toolchain requires a few tools for compilation. You will need:
brew install autoconf automake libtool pkg-config brew install autoconf automake libtool pkg-config
brew link libtool brew link libtool
- Install Cython (0.28.1): - Install Cython (0.29.17):
# pip method if available (sudo might be needed.) # pip method if available (sudo might be needed.)
pip3 install cython==0.28.1 pip3 install Cython==0.29.17
## Using the toolchain ## Using the toolchain