Skip to content

Commit 16a165d

Browse files
committed
fix pip install option again
1 parent 2d209ce commit 16a165d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
python -m pip install --upgrade pip
4040
python -m pip install wheel
41-
python -m pip install cython --install-option="--no-cython-compile"
41+
python -m pip install cython --config-settings="--build-option=--no-cython-compile"
4242
- name: Install
4343
run: |
4444
python -m pip install --no-cache-dir -r requirements-dev.txt

.github/workflows/deploy-n-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
python -m pip install --upgrade pip
2626
python -m pip install wheel
27-
python -m pip install cython --install-option="--no-cython-compile"
27+
python -m pip install cython --config-settings="--build-option=--no-cython-compile"
2828
- name: 💎 Install
2929
run: |
3030
python -m pip install --no-cache-dir -r requirements-dev.txt

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
python -m pip install --upgrade pip
2828
python -m pip install wheel
29-
python -m pip install cython --install-option="--no-cython-compile"
29+
python -m pip install cython --config-settings="--build-option=--no-cython-compile"
3030
- name: Install
3131
run: |
3232
python -m pip install --no-cache-dir -r requirements-dev.txt

0 commit comments

Comments
 (0)