aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tox_pip.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tox_pip.py')
-rw-r--r--tools/tox_pip.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/tox_pip.py b/tools/tox_pip.py
index 5aeca805..63518f92 100644
--- a/tools/tox_pip.py
+++ b/tools/tox_pip.py
@@ -21,12 +21,6 @@ def pip(args):
pypath = pypath.split(os.pathsep) if pypath is not None else []
pypath.insert(0, TOX_PIP_DIR)
os.environ['PYTHONPATH'] = os.pathsep.join(pypath)
- # Disable PEP 517 support when using editable installs.
- for n, a in enumerate(args):
- if not a.startswith('-'):
- if a in 'install' and '-e' in args[n:]:
- args.insert(n + 1, '--no-use-pep517')
- break
# Fix call for setuptools editable install.
for n, a in enumerate(args):
if a == '.':