From 92b3f61b078863e04b302f564557959f93647d57 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 Apr 2020 23:34:33 +0200 Subject: [github-actions] Install cython via pip --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 290232c..2036484 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,11 @@ jobs: - name: install dependencies run: | if test -x "`which port`"; then - sudo port install libtool autoconf automake cython + sudo port install libtool autoconf automake else - brew install libtool autoconf automake cython + brew install libtool autoconf automake fi + pip install cython shell: bash - uses: actions/checkout@v1 - name: autogen -- cgit v1.1-32-gdbae