summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiri Podivin <jpodivin@redhat.com>2022-03-25 16:34:29 +0100
committerJiri Podivin <jpodivin@redhat.com>2022-03-28 11:01:23 +0000
commitb0a1b7209d62c1e67c1e11dc96f98fd457d69352 (patch)
treea197c8c46494240b9b7ab6ce5928587e0343e681
parente6ee869737357a140c258c69442fdd661f04660a (diff)
downloadpbr-b0a1b7209d62c1e67c1e11dc96f98fd457d69352.tar.gz
Future-proofing pyproject.toml5.9.0
Setting the 'py-modules' key to empty list should prevent reemergence of setuptools related issues[1] should the toml file be ever introduced. [1] https://github.com/pypa/setuptools/issues/3197 Related-Bug: #1966382 Depends-On: https://review.opendev.org/c/openstack/tripleo-heat-templates/+/835425 Signed-off-by: Jiri Podivin <jpodivin@redhat.com> Change-Id: I89985a68cc497fd26a30058778fc1a1a52f6d96a
-rw-r--r--pyproject.toml.future3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml.future b/pyproject.toml.future
index e5ae7bc..56fbd2c 100644
--- a/pyproject.toml.future
+++ b/pyproject.toml.future
@@ -7,3 +7,6 @@
requires = ["setuptools>=36.6.0"]
build-backend = "pbr.build"
backend-path = ["."]
+
+[tools.setuptools]
+py-modules=[]