Skip to content

Commit

Permalink
"pip install --use-wheel" was deprecated. See https://pip.pypa.io/en/…
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheinkman committed Apr 20, 2018
1 parent 9475ec8 commit 67724de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ dependencies:
- brew services start mysql
- sudo pip install --upgrade pip
- pip install --upgrade --user --ignore-installed setuptools wheel
- pip install --use-wheel --user -r requirements.txt --quiet || exit
- pip install --user -r requirements.txt --quiet || exit

compile:
override:
# Remove the virtualenv before it can cause problems. As of May 2017 the CircleCI virtualenv/path setup causes some tests to fail unnecessarily.
- rm -r ~/virtualenvs
- python setup.py bdist_wheel
- pip install --use-wheel --user --no-index --find-links=`pwd`/dist/ nupic
- pip install --user --no-index --find-links=`pwd`/dist/ nupic

test:
override:
Expand Down

0 comments on commit 67724de

Please sign in to comment.