This is an automated email from the ASF dual-hosted git repository. yifeizhang pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-marvin.git
The following commit(s) were added to refs/heads/develop by this push: new 0e3edb3 [MARVIN-35] Dependency Links Deprecation & Remove new 2d74ddc Merge pull request #14 from Wei-1/patch-4 0e3edb3 is described below commit 0e3edb3decffbdff5f56545dbe947aeea979b549 Author: Wei Chen <weichentai...@gmail.com> AuthorDate: Mon Feb 18 11:29:28 2019 +0800 [MARVIN-35] Dependency Links Deprecation & Remove check if simply remove these links will help --- python-toolbox/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python-toolbox/Makefile b/python-toolbox/Makefile index 84ce1ef..060af38 100644 --- a/python-toolbox/Makefile +++ b/python-toolbox/Makefile @@ -37,16 +37,16 @@ help: @echo " Build and upload the toolbox as a wheel package in pypi." marvin: - pip install -e ".[testing]" --process-dependency-links + pip install -e ".[testing]" touch .dev marvin --help update: - pip install -e . --process-dependency-links -U + pip install -e . -U marvin-prod: - pip install . --process-dependency-links - rm -f .dev + pip install . + rm -f .dev marvin --help clean-pyc: @@ -55,7 +55,7 @@ clean-pyc: find . -name '*~' -exec rm -f {} + clean-build: - rm -f .prod + rm -f .prod rm -rf *.egg-info rm -rf .cache rm -rf .eggs