[issue9691] sdist includes files that are not in MANIFEST.in

2012-04-09 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: 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 -- ___

[issue9691] sdist includes files that are not in MANIFEST.in

2012-03-18 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: 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 -- ___

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-27 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: 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 -- ___ Python

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-25 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: 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 -- nosy: +python-dev

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-25 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: 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 -- ___

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-19 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: 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

[issue9691] sdist includes files that are not in MANIFEST.in

2012-02-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- stage: test needed - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9691 ___

[issue9691] sdist includes files that are not in MANIFEST.in

2011-02-03 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Can’t reproduce on POSIX (linux2) either. Have you tested with 3.1, 3.2 and distutils2? -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9691

[issue9691] sdist includes files that are not in MANIFEST.in

2010-08-26 Thread Ronald Oussoren
New submission from Ronald Oussoren ronaldousso...@mac.com: 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.