diff options
-rw-r--r-- | .github/workflows/linux.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index dd1b33d..23b7b3e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -11,10 +11,16 @@ jobs: - name: Checkout uses: actions/checkout@v1 + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Cythonize shell: bash run: | pip install -U pip + pip -V pip install -r requirements.txt make cython #python setup.py sdist |