##// END OF EJS Templates
try to install only binaries (#13980)
Matthias Bussonnier -
r28175:4435ef32 merge
parent child Browse files
Show More
@@ -43,7 +43,7 b' jobs:'
43 python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
43 python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
44 # we must install IPython after ipykernel to get the right versions.
44 # we must install IPython after ipykernel to get the right versions.
45 python -m pip install --upgrade --upgrade-strategy eager flaky ipyparallel
45 python -m pip install --upgrade --upgrade-strategy eager flaky ipyparallel
46 python -m pip install --upgrade 'pytest<7'
46 python -m pip install --upgrade 'pytest<7' 'pytest_asyncio<0.21'
47 - name: pytest
47 - name: pytest
48 env:
48 env:
49 COLUMNS: 120
49 COLUMNS: 120
@@ -28,7 +28,7 b' jobs:'
28 - name: Install dependencies
28 - name: Install dependencies
29 run: |
29 run: |
30 python -m pip install --upgrade pip
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 - name: Lint with darker
32 - name: Lint with darker
33 run: |
33 run: |
34 darker -r 60625f241f298b5039cb2debc365db38aa7bb522 --check --diff . || (
34 darker -r 60625f241f298b5039cb2debc365db38aa7bb522 --check --diff . || (
@@ -58,11 +58,18 b' jobs:'
58 - name: Install latex
58 - name: Install latex
59 if: runner.os == 'Linux' && matrix.deps == 'test_extra'
59 if: runner.os == 'Linux' && matrix.deps == 'test_extra'
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
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 - name: Install and update Python dependencies
61 - name: Install and update Python dependencies (binary only)
62 if: ${{ ! contains( matrix.python-version, 'dev' ) }}
62 run: |
63 run: |
63 python -m pip install --upgrade pip setuptools wheel build
64 python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build
64 python -m pip install --upgrade -e .[${{ matrix.deps }}]
65 python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}]
65 python -m pip install --upgrade check-manifest pytest-cov pytest-json-report
66 python -m pip install --only-binary ':all:' --upgrade check-manifest pytest-cov pytest-json-report
67 - name: Install and update Python dependencies (dev?)
68 if: ${{ contains( matrix.python-version, 'dev' ) }}
69 run: |
70 python -m pip install --pre --upgrade pip setuptools wheel build
71 python -m pip install --pre --no-binary curio --upgrade -e .[${{ matrix.deps }}]
72 python -m pip install --pre --upgrade check-manifest pytest-cov pytest-json-report
66 - name: Try building with Python build
73 - name: Try building with Python build
67 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
74 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
68 run: |
75 run: |
General Comments 0
You need to be logged in to leave comments. Login now