-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6212 from ncoghlan/issue-6163-use-setuptools-buil…
…d-meta-legacy-backend Fix #6163: Default to setuptools.build_meta:__legacy__
- Loading branch information
Showing
7 changed files
with
114 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ nosetests.xml | |
coverage.xml | ||
*.cover | ||
tests/data/common_wheels/ | ||
pip-wheel-metadata | ||
|
||
# Misc | ||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
The implicit default backend used for projects that provide a ``pyproject.toml`` | ||
file without explicitly specifying ``build-backend`` now behaves more like direct | ||
execution of ``setup.py``, and hence should restore compatibility with projects | ||
that were unable to be installed with ``pip`` 19.0. This raised the minimum | ||
required version of ``setuptools`` for such builds to 40.8.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
setuptools | ||
# Create local setuptools wheel files for testing by: | ||
# 1. Cloning setuptools and checking out the branch of interest | ||
# 2. Running `python3 bootstrap.py` in that directory | ||
# 3. Running `python3 -m pip wheel --no-cache -w /tmp/setuptools_build_meta_legacy/ .` | ||
# 4. Replacing the `setuptools` entry below with a `file:///...` URL | ||
# (Adjust artifact directory used based on preference and operating system) | ||
|
||
setuptools >= 40.8.0 | ||
wheel |