deps: make dev-env build faster and bump all libs to latest versions
This commit is contained in:
parent
f88230f4c7
commit
f04c86e6d3
5 changed files with 59 additions and 56 deletions
4
Makefile
4
Makefile
|
|
@ -1,3 +1,4 @@
|
|||
SHELL = /bin/bash
|
||||
|
||||
# set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
|
||||
OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
|
||||
|
|
@ -107,7 +108,8 @@ sdist:
|
|||
## make dev-env based on the requirements files and install develop of packages
|
||||
dev-env:
|
||||
pushd ../rhodecode-vcsserver/ && make dev-env && popd
|
||||
pip install -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
|
||||
pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
|
||||
pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
|
||||
pip install -e .
|
||||
|
||||
# Default command on calling make
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue