Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
7a709b6d
Commit
7a709b6d
authored
Dec 01, 2019
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore build-backend and remove switch to avoid pep517. Ref #1644.
parent
cbd977b8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
pyproject.toml
pyproject.toml
+2
-1
tools/tox_pip.py
tools/tox_pip.py
+0
-6
No files found.
pyproject.toml
View file @
7a709b6d
[build-system]
requires
=
["wheel"]
requires
=
[
"setuptools >= 40.8"
,
"wheel"
]
build-backend
=
"setuptools.build_meta"
[tool.towncrier]
package
=
"setuptools"
...
...
tools/tox_pip.py
View file @
7a709b6d
...
...
@@ -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
==
'.'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment