diff options
author | Alexandre Flament <alex@al-f.net> | 2020-12-24 10:23:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 10:23:09 +0100 |
commit | 2fc2d17a27150586f47d25876907bc9c33a829a5 (patch) | |
tree | c1acfbbab0af8493c6d31f47ff5feac0d6ed0cd5 /utils | |
parent | d1291862122bcaffaaab36448dc6cc401c5c41b0 (diff) | |
parent | af49bd2bd2654be51b162c60f809eb7316df602a (diff) | |
download | searxng-2fc2d17a27150586f47d25876907bc9c33a829a5.tar.gz searxng-2fc2d17a27150586f47d25876907bc9c33a829a5.zip |
Merge pull request #2418 from return42/fix-pyenv-install
[fix] makefile.python: remove duplicate pyenv-(un)install targets
Diffstat (limited to 'utils')
-rw-r--r-- | utils/makefile.python | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/utils/makefile.python b/utils/makefile.python index 12e3e1236..c7f1e03ea 100644 --- a/utils/makefile.python +++ b/utils/makefile.python @@ -220,16 +220,8 @@ PHONY += pydebug pydebug: $(PY_ENV) DEBUG=$(DEBUG) $(PY_ENV_BIN)/pytest $(DEBUG) -v $(TEST_FOLDER)/$(TEST) -# install / uninstall python objects into virtualenv (PYENV) -pyenv-install: $(PY_ENV) - @$(PY_ENV_BIN)/python -m pip $(PIP_VERBOSE) install -e . - @echo "ACTIVATE $(call normpath,$(PY_ENV_ACT)) " - -pyenv-uninstall: $(PY_ENV) - @$(PY_ENV_BIN)/python -m pip $(PIP_VERBOSE) uninstall --yes . - # runs python interpreter from ./local/py<N>/bin/python -pyenv-python: pyenv-install +pyenv-python: pyenvinstall $(PY_ENV_BIN)/python -i # With 'dependency_links=' setuptools supports dependencies on packages hosted |