Skip to content

Commit 656fe2a

Browse files
committed
github/build-*: Fix Cython version specifier
Had typo in there meaning 3.0.0 was installed always.
1 parent 2a1f0b3 commit 656fe2a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: .github/workflows/build-debian-multiarch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
run: |
8686
export PIP_CONFIG_FILE=buildconfig/pip_config.ini
8787
echo "\nBuilding pygame wheel\n"
88-
python3 -m pip install "Cython==3.0,<3.1"
88+
python3 -m pip install "Cython>=3.0,<3.1"
8989
python3 setup.py docs
9090
pip3 wheel . --wheel-dir /artifacts -vvv
9191
echo "\nInstalling wheel\n"

Diff for: .github/workflows/build-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
bash ./install_mac_deps.sh
135135
136136
CIBW_BEFORE_BUILD: |
137-
pip install requests numpy Sphinx "Cython==3.0,<3.1" setuptools wheel
137+
pip install requests numpy Sphinx "Cython>=3.0,<3.1" setuptools wheel
138138
python setup.py docs
139139
140140

Diff for: .github/workflows/build-manylinux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171
# command that runs before every build
7272
CIBW_BEFORE_BUILD: |
73-
pip install Sphinx "Cython==3.0,<3.1" setuptools wheel
73+
pip install Sphinx "Cython>=3.0,<3.1" setuptools wheel
7474
python setup.py docs
7575
7676
CIBW_TEST_COMMAND: python -m pygame.tests -v --exclude opengl,music,timing --time_out 300

Diff for: .github/workflows/build-ubuntu-sdist.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
run: |
6666
sudo apt-get update --fix-missing
6767
sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libfreetype6-dev libportmidi-dev libjpeg-dev python3-setuptools python3-dev
68-
python3 -m pip install sphinx numpy>=1.21.0 "Cython==3.0,<3.1"
68+
python3 -m pip install sphinx numpy>=1.21.0 "Cython>=3.0,<3.1"
6969
7070
- name: Install deps retry
7171
if: steps.install_deps.outcome == 'failure'
7272
run: |
7373
sudo apt-get update --fix-missing
7474
sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libfreetype6-dev libportmidi-dev libjpeg-dev python3-setuptools python3-dev
75-
python3 -m pip install sphinx numpy>=1.21.0 "Cython==3.0,<3.1"
75+
python3 -m pip install sphinx numpy>=1.21.0 "Cython>=3.0,<3.1"
7676
7777
- name: Make sdist and install it
7878
env:

0 commit comments

Comments
 (0)