Skip to content

Commit

Permalink
Call pip install with the --no-cache-dir option
Browse files Browse the repository at this point in the history
This prevents a mismatch between for example `numpy` and `scipy`.
  • Loading branch information
sphuber committed Jan 4, 2019
1 parent 45b4b40 commit 0b78a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ install:
- pip install -U pip wheel setuptools
- pip install coveralls
# Install AiiDA with some optional dependencies
- if [ "$TEST_TYPE" == "docs" ]; then pip install . && pip install -r docs/requirements_for_rtd.txt; else pip install .[all]; fi
- if [ "$TEST_TYPE" == "docs" ]; then pip install . && pip install -r docs/requirements_for_rtd.txt; else pip install --no-cache-dir .[all]; fi

env:
## Build matrix to test both backends, and the docs
Expand Down

0 comments on commit 0b78a3d

Please sign in to comment.