Disable pip cache then installing with make install
This commit is contained in:
parent
64d3901ec4
commit
9db40bdbcb
2 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@ Fixed
|
|||
* Allow both unicode and bytes dotted string in utils.import_attr
|
||||
* Fix some spelling and grammar on log messages. (thanks to Allie Micka)
|
||||
* Fix froms css class error on success/error due to a scpaless block
|
||||
* Disable pip cache then installing with make install
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
|
2
Makefile
2
Makefile
|
@ -6,7 +6,7 @@ build:
|
|||
|
||||
install: dist
|
||||
pip -V
|
||||
pip install --no-deps --upgrade --force-reinstall --find-links ./dist/django-cas-server-${VERSION}.tar.gz django-cas-server
|
||||
pip install --no-cache-dir --no-deps --upgrade --force-reinstall --find-links ./dist/django-cas-server-${VERSION}.tar.gz django-cas-server
|
||||
|
||||
uninstall:
|
||||
pip uninstall django-cas-server || true
|
||||
|
|
Loading…
Reference in a new issue