Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

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 42df6ca commit f7b86e0
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 @@ -21,7 +21,7 @@ dependencies:
override:
# Install all dependencies
- pip install --user --upgrade --verbose setuptools setuptools-scm
- pip install --use-wheel --no-cache-dir --user -r bindings/py/requirements.txt --verbose || exit
- pip install --no-cache-dir --user -r bindings/py/requirements.txt --verbose || exit

compile:
override:
Expand All @@ -33,7 +33,7 @@ compile:
- VERBOSE=1 cd build/scripts && set -o pipefail && make install 2>&1 | grep -v -F 'Installing:'
- python setup.py bdist_wheel
- mkdir dist && mv bindings/py/dist/*.whl dist/
- pip install --use-wheel --user --no-index --find-links=`pwd`/dist/ nupic.bindings
- pip install --user --no-index --find-links=`pwd`/dist/ nupic.bindings

test:
override:
Expand Down

0 comments on commit f7b86e0

Please sign in to comment.