##// END OF EJS Templates
try to install only binaries
Matthias Bussonnier -
Show More
@@ -28,7 +28,7 jobs:
28 28 - name: Install dependencies
29 29 run: |
30 30 python -m pip install --upgrade pip
31 pip install darker==1.5.1 black==22.10.0
31 pip install --only-binary ':all:' darker==1.5.1 black==22.10.0
32 32 - name: Lint with darker
33 33 run: |
34 34 darker -r 60625f241f298b5039cb2debc365db38aa7bb522 --check --diff . || (
@@ -60,9 +60,9 jobs:
60 60 run: echo "disable latex for now, issues in mirros" #sudo apt-get -yq -o Acquire::Retries=3 --no-install-suggests --no-install-recommends install texlive dvipng
61 61 - name: Install and update Python dependencies
62 62 run: |
63 python -m pip install --upgrade pip setuptools wheel build
64 python -m pip install --upgrade -e .[${{ matrix.deps }}]
65 python -m pip install --upgrade check-manifest pytest-cov pytest-json-report
63 python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build
64 python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}]
65 python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov pytest-json-report
66 66 - name: Try building with Python build
67 67 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
68 68 run: |
General Comments 0
You need to be logged in to leave comments. Login now