1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

CI: fix pip installation of the collection (#592)

https://github.com/pypa/setuptools/issues/3197
latest release of setuptools 61.0 broke pip install

Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sergey 2023-05-30 14:34:15 +03:00 committed by GitHub
parent 181de14633
commit e5b37d9756
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,5 @@ import setuptools
setuptools.setup(
setup_requires=['pbr'],
pbr=True)
pbr=True,
py_modules=[])