summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 4 insertions, 14 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 04b36130e..acc13c2ee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -90,24 +90,14 @@ jobs:
python3 -m pip install pexpect
echo "/usr/local/opt/ccache/libexec" >> $GITHUB_PATH
- - name: Install Cython
- if: matrix.python-bindings && runner.os == 'Linux'
- run: |
- python3 -m pip install \
- Cython==0.29.* --install-option="--no-cython-compile"
- echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
-
- - name: Install Cython (macOS)
- if: matrix.python-bindings && runner.os == 'macOS'
- run: |
- python3 -m pip install \
- Cython==0.29 --install-option="--no-cython-compile"
-
- - name: Install Pytest
+ - name: Install Python Dependencies
if: matrix.python-bindings
run: |
python3 -m pip install pytest
python3 -m pytest --version
+ python3 -m pip install \
+ Cython==0.29.* --install-option="--no-cython-compile"
+ echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: Restore Dependencies
id: restore-deps
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback