This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit 70e5564693e06a234bcf2e8b805d1e03320cecf6
Author: Dave Andreoli <d...@gurumeditation.it>
AuthorDate: Sat Aug 30 11:25:40 2025 +0200
setup.py: remove unused stuff
---
setup.py | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/setup.py b/setup.py
index 16054a1..087dcdf 100755
--- a/setup.py
+++ b/setup.py
@@ -294,22 +294,12 @@ class CleanGenerated(Command):
os.remove(fullpath)
-# === setup.py uninstall command ===
-RECORD_FILE = 'installed_files-%d.%d.txt' % (sys.version_info[0], sys.version_info[1])
-
-
-setup(
+dist = setup(
cmdclass={
'test': Test,
'clean_generated_files': CleanGenerated,
},
- command_options={
- 'install': {
- 'record': ('setup.py', RECORD_FILE),
- },
- },
packages=packages,
ext_modules=ext_modules,
py_modules=py_modules,
- zip_safe=False,
)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.