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

Skip to content

Commit 4a7268e

Browse files
committed
Try using custom file for 3.5 build
1 parent c46bdb2 commit 4a7268e

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,8 @@ env:
4949
- secure: E7OCdqhZ+PlwJcn+Hd6ns9TDJgEUXiUNEI0wu7xjxB2vBRRIKtZMbuaZjd+iKDqCKuVOJKu0ClBUYxmgmpLicTwi34CfTUYt6D4uhrU+8hBBOn1iiK51cl/aBvlUUrqaRLVhukNEBGZcyqAjXSA/Qsnp2iELEmAfOUa92ZYo1sk=
5050
- secure: dfjNqGKzQG5bu3FnDNwLG8H/C4QoieFo4PfFmZPdM2RY7WIzukwKFNT6kiDfOrpwt+2bR7FhzjOGlDECGtlGOtYPN8XuXGjhcP4a4IfakdbDfF+D3NPIpf5VlE6776k0VpvcZBTMYJKNFIMc7QPkOwjvNJ2aXyfe3hBuGlKJzQU=
5151
# Variables controlling Python dependencies.
52-
- CYCLER=cycler
5352
- DATEUTIL=python-dateutil
5453
- NOSE=
55-
- NUMPY=numpy
5654
- PANDAS=
5755
- JUPYTER=
5856
- PYPARSING=pyparsing
@@ -92,6 +90,7 @@ matrix:
9290
- PYTEST_COV=pytest-cov==2.3.1
9391
- PYTEST_TIMEOUT=pytest-timeout==1.2.1 # Newer pytest-timeouts don't support pytest 3.4.
9492
- SPHINX=sphinx==1.3
93+
- EXTRAREQS='requirements/testing/travis35.txt'
9594
- python: 3.5
9695
env:
9796
# - PYTHONOPTIMIZE=2 # This currently doesn't work.
@@ -146,6 +145,7 @@ install:
146145
- |
147146
# Install dependencies from PyPI.
148147
python -mpip install --upgrade $PRE -r requirements/testing/travis_all.txt
148+
python -mpip install --upgrade -r $EXTRAREQS
149149
python -mpip install --upgrade $PRE \
150150
$CYCLER \
151151
$DATEUTIL \

requirements/testing/travis35.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
cycler==0.10
2+
python-dateutil==2.1
3+
nose
4+
numpy==1.10.0
5+
pandas<0.21.0
6+
pyparsing==2.0.1
7+
pytest==3.4
8+
pytest-cov==2.3.1
9+
pytest-timeout==1.2.1
10+
sphinx==1.3

requirements/testing/travis_all.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
codecov
22
coverage
3+
cycler
4+
numpy
35
pillow
46
tornado

0 commit comments

Comments
 (0)