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年08月26日 11:30 by ronaldoussoren, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| manifest-test.zip | ronaldoussoren, 2010年08月26日 11:30 | |||
| Messages (8) | |||
|---|---|---|---|
| msg114966 - (view) | Author: Ronald Oussoren (ronaldoussoren) * (Python committer) | Date: 2010年08月26日 11:30 | |
The attached file 'manifest-test.zip' is a small distutils project that demonstrates a problem I have with the sdist command. The archive contains a directory 'sandbox' that is not mentioned in MANIFEST.in or anywhere in setup.py. When I create an sdist using "python setup.py sdist" the sandbox directory is included in the archive. This happens with 2.7 on Windows, while 2.7 on OSX does not have this behavior. |
|||
| msg127864 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年02月04日 03:12 | |
Can’t reproduce on POSIX (linux2) either. Have you tested with 3.1, 3.2 and distutils2? |
|||
| msg153699 - (view) | Author: Nadeem Vawda (nadeem.vawda) * (Python committer) | Date: 2012年02月19日 11:00 | |
This happens because the glob-to-regexp translator assumes that the directory separator is "/", regardless of platform. Consequently, the regexp for "include *.py" ends up matching "sandbox\dummy.py" erroneously on Windows. The problem is currently being discussed in issue 6884; I'm marking this issue as a duplicate. |
|||
| msg154256 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年02月25日 15:14 | |
New changeset 47788c90f80b by Éric Araujo in branch '2.7': Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/cpython/rev/47788c90f80b |
|||
| msg154263 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年02月25日 15:32 | |
New changeset 73aa4c9305b3 by Éric Araujo in branch '3.2': Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/cpython/rev/73aa4c9305b3 |
|||
| msg154458 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年02月27日 11:29 | |
New changeset 4d6a9f287543 by Éric Araujo in branch 'default': Fix bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/distutils2/rev/4d6a9f287543 |
|||
| msg156269 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年03月18日 19:40 | |
New changeset edcdef70c44e by Éric Araujo in branch '3.2': Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/cpython/rev/edcdef70c44e |
|||
| msg157880 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年04月09日 19:06 | |
New changeset b5f0ce4ddf0c by Éric Araujo in branch '2.7': Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). http://hg.python.org/cpython/rev/b5f0ce4ddf0c |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:05 | admin | set | github: 53900 |
| 2012年04月09日 19:06:00 | python-dev | set | messages: + msg157880 |
| 2012年03月18日 19:40:13 | python-dev | set | messages: + msg156269 |
| 2012年02月27日 11:29:47 | python-dev | set | messages: + msg154458 |
| 2012年02月25日 15:32:26 | python-dev | set | messages: + msg154263 |
| 2012年02月25日 15:14:00 | python-dev | set | nosy:
+ python-dev messages: + msg154256 |
| 2012年02月19日 22:31:58 | eric.araujo | set | status: open -> closed stage: test needed -> resolved |
| 2012年02月19日 11:00:57 | nadeem.vawda | set | nosy:
+ nadeem.vawda messages: + msg153699 resolution: duplicate superseder: Impossible to include file in sdist that starts with 'build' on Win32 |
| 2011年02月04日 03:12:23 | eric.araujo | set | nosy:
ronaldoussoren, tarek, eric.araujo messages: + msg127864 components: + Windows |
| 2010年08月26日 11:30:48 | ronaldoussoren | create | |