This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2010年12月07日 09:06 by ronaldoussoren, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (10) | |||
|---|---|---|---|
| msg123536 - (view) | Author: Ronald Oussoren (ronaldoussoren) * (Python committer) | Date: 2010年12月07日 09:06 | |
I just noticed that distutils creates an egg-info for the stdlib while installing Python. This definitely happens for Python 2.7 and Python 3.2 (both framework builds on OSX). In lib-dynload there is and egg-info file: "Python-2.7.1-py2.7.egg-info" Is this intentional? If it is: the OSX installer does not remove older versions when installing an upgrade (that is, I also have egg-info files for Python-2.7 and several pre-releases) |
|||
| msg123545 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2010年12月07日 12:25 | |
I think the existence of this file is intentional, to satisfy pkg_resources requirements for "Python". Philip can confirm. |
|||
| msg132174 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年03月25日 22:36 | |
After a bit of exploring, I think that it’s possible that the existence of this file is not intentional. Python uses distutils.core.setup to build install most of its own extension modules, and the PyBuildInstall class used for the install command does not disable the automatic egg-info generation. With the move of packaging into the stdlib and the addition of the superseding dist-info format, such files can be removed in 3.3. They’re harmless in stable versions, and removing them would require updates to the build tools that don’t really bring us anything. |
|||
| msg132632 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2011年03月31日 03:37 | |
+1 to removing of the spurious egg-info files. For the folks who are not aware of the multitude 'packaging terms', egg-info files are the first step towards the path leading to more confusion. So cleaning up would be definitely better in the standard distribution. |
|||
| msg132674 - (view) | Author: Ronald Oussoren (ronaldoussoren) * (Python committer) | Date: 2011年03月31日 14:57 | |
I agree that the egg-info file should be removed in 3.3, especially because distutils2 has a better way of specifying python version dependencies. The OSX installers for 2.7, 3.1 and 3.2 should remove the egg-info file for older releases, that way we at least don't lie about the version. IMO we cannot remove the egg-info for current releases, someone might depend on their existence and this is a minor enough nit to not risk breaking code. |
|||
| msg132692 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年03月31日 17:59 | |
Yes, I only target 3.3. |
|||
| msg136982 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年05月26日 16:52 | |
The egg-info file for Python itself can go, but what about wsgiref.egg-info? It was included in 2.5 too to preserve compatibility with code using pkg_resources.require instead of regular import. I’d like to remove it too: it’s not needed anymore with the new standards, and I don’t think there’s a backward compat issue. There shouldn’t be 3.x code out there using this call, since all 3.x versions have had wsgiref in the stdlib. The only compat issue could be for some 2.x codebase relying on the egg-info file and being converted to Python 3.3: if we remove the file, people would have to remove the pkg_resources.require call. I would argue in favor of the removal: people can assume that wsgiref is in the stdlib if they target 2.5+ or 3.x, and if they do use the require call, then removing it is just another tiny step in the conversion process. |
|||
| msg137304 - (view) | Author: Tarek Ziadé (tarek) * (Python committer) | Date: 2011年05月30日 16:48 | |
I am going to remove wsgiref.egg-info |
|||
| msg137307 - (view) | Author: Tarek Ziadé (tarek) * (Python committer) | Date: 2011年05月30日 16:51 | |
see issue12218 |
|||
| msg137959 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2011年06月09日 12:10 | |
New changeset e3f6c10eb590 by Éric Araujo in branch 'default': Stop creating a Python-X.Y.Z-pyX.Y.egg-info file on install (#10645) http://hg.python.org/cpython/rev/e3f6c10eb590 New changeset af7bc95e5b1e by Éric Araujo in branch 'default': The change done for #10645 deserves a NEWS entry http://hg.python.org/cpython/rev/af7bc95e5b1e |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:09 | admin | set | github: 54854 |
| 2011年06月09日 12:19:19 | eric.araujo | set | status: open -> closed resolution: fixed stage: resolved |
| 2011年06月09日 12:10:59 | python-dev | set | nosy:
+ python-dev messages: + msg137959 |
| 2011年06月09日 12:06:59 | eric.araujo | set | dependencies: + Removing wsgiref.egg-info |
| 2011年05月30日 16:51:19 | tarek | set | messages: + msg137307 |
| 2011年05月30日 16:48:08 | tarek | set | messages: + msg137304 |
| 2011年05月26日 16:52:08 | eric.araujo | set | messages: + msg136982 |
| 2011年03月31日 17:59:39 | eric.araujo | set | assignee: tarek -> eric.araujo messages: + msg132692 |
| 2011年03月31日 14:57:32 | ronaldoussoren | set | messages: + msg132674 |
| 2011年03月31日 14:43:51 | Arfrever | set | nosy:
+ Arfrever |
| 2011年03月31日 03:37:35 | orsenthil | set | nosy:
+ orsenthil messages: + msg132632 |
| 2011年03月25日 22:36:14 | eric.araujo | set | title: egg-info file in lib-dynload -> Remove egg-info files in stdlib nosy: + alexis messages: + msg132174 versions: + Python 3.3, - Python 3.1, Python 2.7, Python 3.2 components: + Distutils2, - Distutils |
| 2010年12月07日 12:25:57 | eric.araujo | set | nosy:
+ pje messages: + msg123545 |
| 2010年12月07日 09:06:53 | ronaldoussoren | create | |