Show More
@@ -58,11 +58,18 b' jobs:' | |||
|
58 | 58 | - name: Install latex |
|
59 | 59 | if: runner.os == 'Linux' && matrix.deps == 'test_extra' |
|
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 | - name: Install and update Python dependencies | |
|
61 | - name: Install and update Python dependencies (binary only) | |
|
62 | if: ${{ ! contains( matrix.python-version, 'dev' ) }} | |
|
62 | 63 | run: | |
|
63 | 64 | python -m pip install --only-binary ':all:' --upgrade pip setuptools wheel build |
|
64 | 65 | python -m pip install --only-binary ':all:' --no-binary curio --upgrade -e .[${{ matrix.deps }}] |
|
65 | 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 | 73 | - name: Try building with Python build |
|
67 | 74 | if: runner.os != 'Windows' # setup.py does not support sdist on Windows |
|
68 | 75 | run: | |
General Comments 0
You need to be logged in to leave comments.
Login now