Unverified Commit 21f1b951 by Farhanah Sheets Committed by GitHub

Merge pull request #761 from edx/fsheets/pin-pip

Pin pip version to 9.0.3
parents b61fc53b 3645fecb
......@@ -15,6 +15,8 @@ before_install:
# Fix intermittent "resource temporarily unavailable" and "write" errors failing the Travis builds.
# See: https://github.com/travis-ci/travis-ci/issues/8920
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
# pin to 9.0.3 until tox-battery upgrades
- pip install --upgrade pip==9.0.3
# Install a newer version of docker-compose
# Remove once dockers default is this version: https://docs.travis-ci.com/user/docker/#Using-Docker-Compose
- sudo rm /usr/local/bin/docker-compose
......
......@@ -19,6 +19,9 @@ export PATH=$PATH:$PWD/node_modules/.bin
node --version
npm --version
# Pin pip version
make pin_pip
make develop
make migrate
......
......@@ -8,6 +8,10 @@ DJANGO_SETTINGS_MODULE ?= "analytics_dashboard.settings.local"
.PHONY: requirements clean
# pin to 9.0.3 until tox-battery upgrades
pin_pip:
pip install --upgrade pip==9.0.3
requirements: requirements.py requirements.js
requirements.py:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment