summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2023-03-07 15:03:17 -0800
committerGitHub <noreply@github.com>2023-03-07 15:03:17 -0800
commita84b13532b98c42576eba5eac2f75c8887642b2d (patch)
treeedd60e9f685a8a4bc139efcacfdc059479c85550
parent13cbcb6de688543befa5d64fcb79df571150d471 (diff)
parent8d038390977376a82ee4902b7188155508133db1 (diff)
downloadscons-git-a84b13532b98c42576eba5eac2f75c8887642b2d.tar.gz
Merge pull request #4318 from mgorny/wheel-dep
Remove redundant wheel dep from pyproject.toml
-rw-r--r--CHANGES.txt6
-rw-r--r--RELEASE.txt3
-rw-r--r--pyproject.toml2
3 files changed, 6 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6766bee8c..2d8e53bab 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,9 +9,9 @@ NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer suppo
RELEASE VERSION/DATE TO BE FILLED IN LATER
- From John Doe:
-
- - Whatever John Doe did.
+ From Michał Górny:
+ - Remove the redundant `wheel` dependency from `pyproject.toml`,
+ as it is added automatically by the setuptools PEP517 backend.
RELEASE 4.5.1 - Mon, 06 Mar 2023 14:08:29 -0700
diff --git a/RELEASE.txt b/RELEASE.txt
index 04108d14d..4e25b9522 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -44,7 +44,8 @@ IMPROVEMENTS
PACKAGING
---------
-- List changes in the way SCons is packaged and/or released
+- Remove the redundant `wheel` dependency from `pyproject.toml`,
+ as it is added automatically by the setuptools PEP517 backend.
DOCUMENTATION
-------------
diff --git a/pyproject.toml b/pyproject.toml
index 1725456de..548ae2d65 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
build-backend = "setuptools.build_meta"
-requires = ["setuptools", "wheel"]
+requires = ["setuptools"]
# for black and mypy, set the lowest Python version supported
[tool.black]