hercules-team / python-augeas

Python bindings for Augeas
GNU Lesser General Public License v2.1
44 stars 31 forks source link

Do not install tests #46

Closed moubctez closed 2 years ago

moubctez commented 4 years ago

There is a typo in setup.py and test directory gets installed. Fix:

--- setup.py.orig   2020-02-16 20:11:31.000000000 +0000
+++ setup.py
@@ -18,7 +18,7 @@ setup(name=name,
       author="Harald Hoyer",
       author_email="augeas-devel@redhat.com",
       description="""Python bindings for Augeas""",
-      packages=find_packages(exclude=('test')),
+      packages=find_packages(exclude=('test',)),
       setup_requires=["cffi>=1.0.0"],
       cffi_modules=["augeas/ffi.py:ffi"],
       install_requires=["cffi>=1.0.0"],
jefferyto commented 3 years ago

Perhaps you can open a PR with this fix? :slightly_smiling_face:

FelixSchwarz commented 2 years ago

bug was fixed in commit f74c4a8206c5a7f28836cbe3cd043bc481c5e518, you can close the issue :-)

moubctez commented 2 years ago

Will there be a release anytime soon?

thedrow commented 2 years ago

When I'll find the time to make one.