Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0481c01

Browse files
committed
Remove travis from requirements file names.
1 parent ccdc96d commit 0481c01

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ environment:
2727
- PYTHON_VERSION: "3.7"
2828
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
2929
TEST_ALL: "no"
30-
EXTRAREQS: "-r requirements/testing/travis_extra.txt"
30+
EXTRAREQS: "-r requirements/testing/extra.txt"
3131
- PYTHON_VERSION: "3.8"
3232
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
3333
TEST_ALL: "no"
34-
EXTRAREQS: "-r requirements/testing/travis_extra.txt"
34+
EXTRAREQS: "-r requirements/testing/extra.txt"
3535

3636
# We always use a 64-bit machine, but can build x86 distributions
3737
# with the PYTHON_ARCH variable
@@ -62,7 +62,7 @@ install:
6262
- conda install -c conda-forge pywin32
6363
- echo %PYTHON_VERSION% %TARGET_ARCH%
6464
# 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%
6666
# Install optional dependencies from PyPI.
6767
# Sphinx is needed to run sphinxext tests
6868
- python -mpip install --upgrade sphinx

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
XVFB_RUN: xvfb-run -a
3131
- os: ubuntu-16.04
3232
python-version: 3.7
33-
extra-requirements: '-r requirements/testing/travis_extra.txt'
33+
extra-requirements: '-r requirements/testing/extra.txt'
3434
XVFB_RUN: xvfb-run -a
3535
CFLAGS: "-fno-lto" # Ensure that disabling LTO works.
3636
- os: ubuntu-16.04
3737
python-version: 3.8
38-
extra-requirements: '-r requirements/testing/travis_extra.txt'
38+
extra-requirements: '-r requirements/testing/extra.txt'
3939
XVFB_RUN: xvfb-run -a
4040
- os: macos-latest
4141
python-version: 3.8
@@ -142,7 +142,7 @@ jobs:
142142
# Install dependencies from PyPI.
143143
python -mpip install --upgrade $PRE \
144144
cycler kiwisolver numpy pillow pyparsing python-dateutil \
145-
-r requirements/testing/travis_all.txt \
145+
-r requirements/testing/all.txt \
146146
${{ matrix.extra-requirements }}
147147
148148
# Install optional dependencies from PyPI.

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ steps:
9191

9292
- bash: |
9393
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 ||
9595
[[ "$PYTHON_VERSION" = 'Pre' ]]
9696
displayName: 'Install dependencies with pip'
9797

requirements/dev/dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-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
44
-r ../testing/flake8.txt

requirements/testing/travis_all.txt renamed to requirements/testing/all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pip requirements for all the travis builds
1+
# pip requirements for all the CI builds
22

33
certifi
44
coverage

requirements/testing/travis_extra.txt renamed to requirements/testing/extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Extra pip requirements for the travis python 3.7+ builds
1+
# Extra pip requirements for the Python 3.7+ builds
22

33
ipykernel
44
nbconvert[execute]!=6.0.0,!=6.0.1

0 commit comments

Comments
 (0)