File tree 6 files changed +11
-11
lines changed 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ environment:
27
27
- PYTHON_VERSION : " 3.7"
28
28
CONDA_INSTALL_LOCN : " C:\\ Miniconda37-x64"
29
29
TEST_ALL : " no"
30
- EXTRAREQS : " -r requirements/testing/travis_extra .txt"
30
+ EXTRAREQS : " -r requirements/testing/extra .txt"
31
31
- PYTHON_VERSION : " 3.8"
32
32
CONDA_INSTALL_LOCN : " C:\\ Miniconda37-x64"
33
33
TEST_ALL : " no"
34
- EXTRAREQS : " -r requirements/testing/travis_extra .txt"
34
+ EXTRAREQS : " -r requirements/testing/extra .txt"
35
35
36
36
# We always use a 64-bit machine, but can build x86 distributions
37
37
# with the PYTHON_ARCH variable
@@ -62,7 +62,7 @@ install:
62
62
- conda install -c conda-forge pywin32
63
63
- echo %PYTHON_VERSION% %TARGET_ARCH%
64
64
# Install dependencies from PyPI.
65
- - python -mpip install --upgrade -r requirements/testing/travis_all .txt %EXTRAREQS% %PINNEDVERS%
65
+ - python -mpip install --upgrade -r requirements/testing/all .txt %EXTRAREQS% %PINNEDVERS%
66
66
# Install optional dependencies from PyPI.
67
67
# Sphinx is needed to run sphinxext tests
68
68
- python -mpip install --upgrade sphinx
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ jobs:
30
30
XVFB_RUN : xvfb-run -a
31
31
- os : ubuntu-16.04
32
32
python-version : 3.7
33
- extra-requirements : ' -r requirements/testing/travis_extra .txt'
33
+ extra-requirements : ' -r requirements/testing/extra .txt'
34
34
XVFB_RUN : xvfb-run -a
35
35
CFLAGS : " -fno-lto" # Ensure that disabling LTO works.
36
36
- os : ubuntu-16.04
37
37
python-version : 3.8
38
- extra-requirements : ' -r requirements/testing/travis_extra .txt'
38
+ extra-requirements : ' -r requirements/testing/extra .txt'
39
39
XVFB_RUN : xvfb-run -a
40
40
- os : macos-latest
41
41
python-version : 3.8
@@ -142,7 +142,7 @@ jobs:
142
142
# Install dependencies from PyPI.
143
143
python -mpip install --upgrade $PRE \
144
144
cycler kiwisolver numpy pillow pyparsing python-dateutil \
145
- -r requirements/testing/travis_all .txt \
145
+ -r requirements/testing/all .txt \
146
146
${{ matrix.extra-requirements }}
147
147
148
148
# Install optional dependencies from PyPI.
Original file line number Diff line number Diff line change 91
91
92
92
- bash : |
93
93
python -m pip install --upgrade pip
94
- python -m pip install -r requirements/testing/travis_all .txt -r requirements/testing/travis_extra .txt ||
94
+ python -m pip install -r requirements/testing/all .txt -r requirements/testing/extra .txt ||
95
95
[[ "$PYTHON_VERSION" = 'Pre' ]]
96
96
displayName : ' Install dependencies with pip'
97
97
Original file line number Diff line number Diff line change 1
1
-r ../doc/doc-requirements.txt
2
- -r ../testing/travis_all .txt
3
- -r ../testing/travis_extra .txt
2
+ -r ../testing/all .txt
3
+ -r ../testing/extra .txt
4
4
-r ../testing/flake8.txt
Original file line number Diff line number Diff line change 1
- # pip requirements for all the travis builds
1
+ # pip requirements for all the CI builds
2
2
3
3
certifi
4
4
coverage
Original file line number Diff line number Diff line change 1
- # Extra pip requirements for the travis python 3.7+ builds
1
+ # Extra pip requirements for the Python 3.7+ builds
2
2
3
3
ipykernel
4
4
nbconvert[execute]!=6.0.0,!=6.0.1
You can’t perform that action at this time.
0 commit comments