8000 Use --pre flag to install prerelease of deps · matplotlib/matplotlib@33e5cf6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 33e5cf6

Browse files
committed
Use --pre flag to install prerelease of deps
In the nightly job which is allowed to fail. This will hopefully allow us to spot upstream issues before new packages are released
1 parent cfd47fb commit 33e5cf6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ matrix:
4343
- python: 2.7
4444
env: BUILD_DOCS=true
4545
- python: "nightly"
46+
env: PRE=--pre
4647
allow_failures:
4748
- python : "nightly"
4849

4950
install:
50-
- pip install -q nose python-dateutil $NUMPY pep8 pyparsing pillow sphinx!=1.3.0
51+
- pip install -q $PRE nose python-dateutil $NUMPY pep8 pyparsing pillow sphinx!=1.3.0
5152

5253
# We manually install humor sans using the package from Ubuntu 14.10. Unfortunatly humor sans is not
5354
# availible in the Ubuntu version used by Travis but we can manually install the deb from a later
@@ -58,8 +59,8 @@ install:
5859
# Neihter is installed as a dependency of IPython since they are not used by the IPython console.
5960
- |
6061
if [[ $BUILD_DOCS == true ]]; then
61-
pip install numpydoc ipython jsonschema mistune
62-
pip install -q linkchecker
62+
pip install $PRE numpydoc ipython jsonschema mistune
63+
pip install -q $PRE linkchecker
6364
wget https://github.com/google/fonts/blob/master/ofl/felipa/Felipa-Regular.ttf?raw=true -O Felipa-Regular.ttf
6465
wget http://mirrors.kernel.org/ubuntu/pool/universe/f/fonts-humor-sans/fonts-humor-sans_1.0-1_all.deb
6566
mkdir -p tmp

0 commit comments

Comments
 (0)
0