We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbd977b commit 7a709b6Copy full SHA for 7a709b6
pyproject.toml
@@ -1,5 +1,6 @@
1
[build-system]
2
-requires = ["wheel"]
+requires = ["setuptools >= 40.8", "wheel"]
3
+build-backend = "setuptools.build_meta"
4
5
[tool.towncrier]
6
package = "setuptools"
tools/tox_pip.py
@@ -21,12 +21,6 @@ def pip(args):
21
pypath = pypath.split(os.pathsep) if pypath is not None else []
22
pypath.insert(0, TOX_PIP_DIR)
23
os.environ['PYTHONPATH'] = os.pathsep.join(pypath)
24
- # Disable PEP 517 support when using editable installs.
25
- for n, a in enumerate(args):
26
- if not a.startswith('-'):
27
- if a in 'install' and '-e' in args[n:]:
28
- args.insert(n + 1, '--no-use-pep517')
29
- break
30
# Fix call for setuptools editable install.
31
for n, a in enumerate(args):
32
if a == '.':
0 commit comments