summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2023-01-04 12:01:18 +0000
committerStephen Finucane <sfinucan@redhat.com>2023-01-04 12:01:18 +0000
commitca5ed66d55f8cc52e0a6c9c311dc00c97dd9347a (patch)
tree5a509ea43c50463aa252fd22f99c42c006f7ef59
parent6b84fbf8f2a92fc9c591e26eeec4b69cc1aa2ffe (diff)
downloadironic-ca5ed66d55f8cc52e0a6c9c311dc00c97dd9347a.tar.gz
setup.py: Remove 'py_modules'
This was merely obscuring a bug in pbr. setuptools doesn't do the auto-discovery when pbr is in use. Remove it. Change-Id: I40500ed7bf9d9fb30381c7539548544152cea85e Signed-off-by: Stephen Finucane <sfinucan@redhat.com> Depends-on: https://review.opendev.org/c/openstack/pbr/+/869082
-rw-r--r--setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index dd26ed49b..e5bafb013 100644
--- a/setup.py
+++ b/setup.py
@@ -13,10 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
setuptools.setup(
setup_requires=['pbr>=2.0.0'],
- py_modules=[],
- pbr=True)
+ pbr=True,
+)