summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-03-22 14:03:40 +0000
committerGerrit Code Review <review@openstack.org>2022-03-22 14:03:40 +0000
commit064ee4523d62a99e7035f0b2c4ed117c9ac3a107 (patch)
tree625db4bd357ee01facca4c2bf82217b883248d51
parent5c8461013f8b65f88d047ec71c92ca11594fe6cf (diff)
parent571e259969b1868d979e9d2b4398d2ff8cacd425 (diff)
downloadpbr-064ee4523d62a99e7035f0b2c4ed117c9ac3a107.tar.gz
Merge "Drop wheel from pyproject.toml examples"
-rw-r--r--doc/source/user/using.rst4
-rw-r--r--pyproject.toml.future2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/user/using.rst b/doc/source/user/using.rst
index 21aa99b..11cdbf2 100644
--- a/doc/source/user/using.rst
+++ b/doc/source/user/using.rst
@@ -41,12 +41,12 @@ PBR can be configured as a PEP517 build-system in ``pyproject.toml``. This
currently continues to rely on setuptools which means you need the above
``setup.py`` file to be present. The main benefits to using a
``pyproject.toml`` file with PBR are that you can control the versions of
-PBR, setuptools, and wheel that are used avoiding easy_install invocation.
+PBR and setuptools that are used avoiding easy_install invocation.
Your build-system block in ``pyproject.toml`` will need to look something
like this::
[build-system]
- requires = ["pbr>=5.7.0", "setuptools>=36.6.0", "wheel"]
+ requires = ["pbr>=5.7.0", "setuptools>=36.6.0"]
build-backend = "pbr.build"
diff --git a/pyproject.toml.future b/pyproject.toml.future
index 1989dfd..e5ae7bc 100644
--- a/pyproject.toml.future
+++ b/pyproject.toml.future
@@ -4,6 +4,6 @@
# once we are more confident it works generally.
[build-system]
-requires = ["setuptools>=36.6.0", "wheel"]
+requires = ["setuptools>=36.6.0"]
build-backend = "pbr.build"
backend-path = ["."]