-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89a19a4
commit f97d27a
Showing
6 changed files
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Removed public class ``SetupRequirementsError`` from the | ||
``setuptools.build_meta`` module. |
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,13 @@ | ||
Added **experimental** support for ``pyproject.toml`` configuration | ||
(as introduced by :pep:`621`). Configuration parameters not covered by | ||
standards are handled in the ``[tool.setuptools]`` sub-table. | ||
|
||
In the future, existing ``setup.cfg`` configuration | ||
may be automatically converted into the ``pyproject.toml`` equivalent before taking effect | ||
(as proposed in :issue:`1688`). Meanwhile users can use automated tools like | ||
:pypi:`ini2toml` to help in the transition. | ||
|
||
Please note that the legacy backend is not guaranteed to work with | ||
``pyproject.toml`` configuration. | ||
|
||
-- by :user:`abravalheri`. |
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,3 @@ | ||
Added vendored dependencies for :pypi:`tomli`, :pypi:`validate-pyproject`. | ||
|
||
These dependencies are used to read ``pyproject.toml`` files and validate them. |
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,3 @@ | ||
Changed the means of interaction between ``setuptools.build_meta`` and | ||
``setuptools.setup``. Instead of simply executing the script, the backend now | ||
relies on ``distutils.core.run_setup`` to obtain a distribution object. |
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,8 @@ | ||
Deprecated ``setuptools.config.read_configuration``, | ||
``setuptools.config.parse_configuration`` and other functions or classes | ||
from ``setuptools.config``. | ||
|
||
Users that still need to parse and process configuration from ``setup.cfg`` can | ||
import a direct replacement from ``setuptools.config.setupcfg``, however this | ||
module is transitional and might be removed in the future | ||
(the ``setup.cfg`` configuration format itself is likely to be deprecated in the future). |
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