summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2023-01-11 18:54:54 +0000
committerGerrit Code Review <review@openstack.org>2023-01-11 18:54:54 +0000
commit895ba325ad08c8bb9dacc4d051b1cf66cfee8d0f (patch)
treed39411874518a38dc41b194ce1e045b069ec3564
parente011922bac9913f8179bb6203ca8f0ed71936b7a (diff)
parentca5ed66d55f8cc52e0a6c9c311dc00c97dd9347a (diff)
downloadironic-895ba325ad08c8bb9dacc4d051b1cf66cfee8d0f.tar.gz
Merge "setup.py: Remove 'py_modules'"
-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,
+)