<feed xmlns='http://www.w3.org/2005/Atom'>
<title>external_python_setuptools/MANIFEST.in, branch v49.1.1</title>
<subtitle>Python setuptools
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/'/>
<entry>
<title>Include pkg_resources test data in sdist</title>
<updated>2020-02-11T15:56:21+00:00</updated>
<author>
<name>Miro Hrončok</name>
<email>miro@hroncok.cz</email>
</author>
<published>2020-02-11T15:49:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=0b6a065ea1415f3491d998fefee47ce800d5afe6'/>
<id>0b6a065ea1415f3491d998fefee47ce800d5afe6</id>
<content type='text'>
This is the error otherwise:

_____________ TestFindDistributions.test_standalone_egg_directory ______________

self = &lt;pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f17518a86d0&gt;
target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_standalone_egg_directory0/target')

    def test_standalone_egg_directory(self, target_dir):
        (TESTS_DATA_DIR / 'my-test-package_unpacked-egg').copy(target_dir)
        dists = pkg_resources.find_distributions(str(target_dir))
&gt;       assert [dist.project_name for dist in dists] == ['my-test-package']
E       AssertionError: assert [] == ['my-test-package']
E         Right contains one more item: 'my-test-package'
E         Use -v to get the full diff

pkg_resources/tests/test_find_distributions.py:25: AssertionError
____________________ TestFindDistributions.test_zipped_egg _____________________

self = &lt;module 'py.error'&gt;, func = &lt;built-in function listdir&gt;
args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)
kwargs = {}, __tracebackhide__ = False, cls = &lt;class 'py.error.ENOENT'&gt;
value = FileNotFoundError(2, 'No such file or directory')
tb = &lt;traceback object at 0x7f1751a6a7c0&gt;, errno = 2

    def checked_call(self, func, *args, **kwargs):
        """ call a function and raise an errno-exception if applicable. """
        __tracebackhide__ = True
        try:
&gt;           return func(*args, **kwargs)
E           FileNotFoundError: [Errno 2] No such file or directory: '/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg'

/usr/lib/python3.8/site-packages/py/_error.py:66: FileNotFoundError

During handling of the above exception, another exception occurred:

self = &lt;pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f1751c8fe80&gt;
target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_zipped_egg0/target')

    def test_zipped_egg(self, target_dir):
&gt;       (TESTS_DATA_DIR / 'my-test-package_zipped-egg').copy(target_dir)

pkg_resources/tests/test_find_distributions.py:30:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/py/_path/local.py:437: in copy
    for x in self.visit(rec=rec):
/usr/lib/python3.8/site-packages/py/_path/common.py:377: in visit
    for x in Visitor(fil, rec, ignore, bf, sort).gen(self):
/usr/lib/python3.8/site-packages/py/_path/common.py:414: in gen
    entries = path.listdir()
/usr/lib/python3.8/site-packages/py/_path/local.py:392: in listdir
    names = py.error.checked_call(os.listdir, self.strpath)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = &lt;module 'py.error'&gt;, func = &lt;built-in function listdir&gt;
args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)
kwargs = {}, __tracebackhide__ = False, cls = &lt;class 'py.error.ENOENT'&gt;
value = FileNotFoundError(2, 'No such file or directory')
tb = &lt;traceback object at 0x7f1751a6a7c0&gt;, errno = 2

    def checked_call(self, func, *args, **kwargs):
        """ call a function and raise an errno-exception if applicable. """
        __tracebackhide__ = True
        try:
            return func(*args, **kwargs)
        except self.Error:
            raise
        except (OSError, EnvironmentError):
            cls, value, tb = sys.exc_info()
            if not hasattr(value, 'errno'):
                raise
            __tracebackhide__ = False
            errno = value.errno
            try:
                if not isinstance(value, WindowsError):
                    raise NameError
            except NameError:
                # we are not on Windows, or we got a proper OSError
                cls = self._geterrnoclass(errno)
            else:
                try:
                    cls = self._geterrnoclass(_winerrnomap[errno])
                except KeyError:
                    raise value
&gt;           raise cls("%s%r" % (func.__name__, args))
E           py.error.ENOENT: [No such file or directory]: listdir('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)

/usr/lib/python3.8/site-packages/py/_error.py:86: ENOENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the error otherwise:

_____________ TestFindDistributions.test_standalone_egg_directory ______________

self = &lt;pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f17518a86d0&gt;
target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_standalone_egg_directory0/target')

    def test_standalone_egg_directory(self, target_dir):
        (TESTS_DATA_DIR / 'my-test-package_unpacked-egg').copy(target_dir)
        dists = pkg_resources.find_distributions(str(target_dir))
&gt;       assert [dist.project_name for dist in dists] == ['my-test-package']
E       AssertionError: assert [] == ['my-test-package']
E         Right contains one more item: 'my-test-package'
E         Use -v to get the full diff

pkg_resources/tests/test_find_distributions.py:25: AssertionError
____________________ TestFindDistributions.test_zipped_egg _____________________

self = &lt;module 'py.error'&gt;, func = &lt;built-in function listdir&gt;
args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)
kwargs = {}, __tracebackhide__ = False, cls = &lt;class 'py.error.ENOENT'&gt;
value = FileNotFoundError(2, 'No such file or directory')
tb = &lt;traceback object at 0x7f1751a6a7c0&gt;, errno = 2

    def checked_call(self, func, *args, **kwargs):
        """ call a function and raise an errno-exception if applicable. """
        __tracebackhide__ = True
        try:
&gt;           return func(*args, **kwargs)
E           FileNotFoundError: [Errno 2] No such file or directory: '/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg'

/usr/lib/python3.8/site-packages/py/_error.py:66: FileNotFoundError

During handling of the above exception, another exception occurred:

self = &lt;pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f1751c8fe80&gt;
target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_zipped_egg0/target')

    def test_zipped_egg(self, target_dir):
&gt;       (TESTS_DATA_DIR / 'my-test-package_zipped-egg').copy(target_dir)

pkg_resources/tests/test_find_distributions.py:30:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/py/_path/local.py:437: in copy
    for x in self.visit(rec=rec):
/usr/lib/python3.8/site-packages/py/_path/common.py:377: in visit
    for x in Visitor(fil, rec, ignore, bf, sort).gen(self):
/usr/lib/python3.8/site-packages/py/_path/common.py:414: in gen
    entries = path.listdir()
/usr/lib/python3.8/site-packages/py/_path/local.py:392: in listdir
    names = py.error.checked_call(os.listdir, self.strpath)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = &lt;module 'py.error'&gt;, func = &lt;built-in function listdir&gt;
args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)
kwargs = {}, __tracebackhide__ = False, cls = &lt;class 'py.error.ENOENT'&gt;
value = FileNotFoundError(2, 'No such file or directory')
tb = &lt;traceback object at 0x7f1751a6a7c0&gt;, errno = 2

    def checked_call(self, func, *args, **kwargs):
        """ call a function and raise an errno-exception if applicable. """
        __tracebackhide__ = True
        try:
            return func(*args, **kwargs)
        except self.Error:
            raise
        except (OSError, EnvironmentError):
            cls, value, tb = sys.exc_info()
            if not hasattr(value, 'errno'):
                raise
            __tracebackhide__ = False
            errno = value.errno
            try:
                if not isinstance(value, WindowsError):
                    raise NameError
            except NameError:
                # we are not on Windows, or we got a proper OSError
                cls = self._geterrnoclass(errno)
            else:
                try:
                    cls = self._geterrnoclass(_winerrnomap[errno])
                except KeyError:
                    raise value
&gt;           raise cls("%s%r" % (func.__name__, args))
E           py.error.ENOENT: [No such file or directory]: listdir('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',)

/usr/lib/python3.8/site-packages/py/_error.py:86: ENOENT
</pre>
</div>
</content>
</entry>
<entry>
<title>tweak #1644 workaround to fix `test_pip_upgrade_from_source`</title>
<updated>2019-01-28T21:08:35+00:00</updated>
<author>
<name>Benoit Pierre</name>
<email>benoit.pierre@gmail.com</email>
</author>
<published>2019-01-28T20:51:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=900aad5a597a43ab4c8ea0efa8bf3041a195bf56'/>
<id>900aad5a597a43ab4c8ea0efa8bf3041a195bf56</id>
<content type='text'>
Explicitly exclude `pyproject.toml` so it's never added (e.g. because `setuptools_scm` is used).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Explicitly exclude `pyproject.toml` so it's never added (e.g. because `setuptools_scm` is used).
</pre>
</div>
</content>
</entry>
<entry>
<title>Exclude .pyc in _vendor folder from sdist output</title>
<updated>2018-10-27T13:00:00+00:00</updated>
<author>
<name>Gökçen Nurlu</name>
<email>gnurlu1@bloomberg.net</email>
</author>
<published>2018-10-27T12:09:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=f25c12c2f60fe524a92282337c999b64d2c8ba91'/>
<id>f25c12c2f60fe524a92282337c999b64d2c8ba91</id>
<content type='text'>
Fixes #1414
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1414
</pre>
</div>
</content>
</entry>
<entry>
<title>Include tox.ini in the sdist. Ref #904.</title>
<updated>2017-01-07T18:09:05+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-01-07T18:08:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=bb2251bae83b072cd972f6865198d70272e7a824'/>
<id>bb2251bae83b072cd972f6865198d70272e7a824</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include the license in sdists and similar packagings.</title>
<updated>2016-08-15T00:40:18+00:00</updated>
<author>
<name>John Kirkham</name>
<email>kirkhamj@janelia.hhmi.org</email>
</author>
<published>2016-08-15T00:40:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=f47bc22fc59d6262ece42722e3a502c672f0558f'/>
<id>f47bc22fc59d6262ece42722e3a502c672f0558f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>README and CHANGES were renamed. Update MANIFEST.in to include them once again in the source distributions. Fixes #575.</title>
<updated>2016-05-06T13:29:56+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-05-06T13:29:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=d7dc0fde71d3ff0090222419b973df0c5a73802c'/>
<id>d7dc0fde71d3ff0090222419b973df0c5a73802c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove _markerlib from manifest</title>
<updated>2016-04-16T08:12:56+00:00</updated>
<author>
<name>Gabi Davar</name>
<email>grizzly.nyo@gmail.com</email>
</author>
<published>2016-03-18T08:06:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=c949b7d6f0f28461a15237ac9d54ad0b2db4c439'/>
<id>c949b7d6f0f28461a15237ac9d54ad0b2db4c439</id>
<content type='text'>
Signed-off-by: Gabi Davar &lt;grizzly.nyo@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Gabi Davar &lt;grizzly.nyo@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge with master. Ref #229.</title>
<updated>2015-12-31T15:51:55+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-12-31T15:51:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=29fa01621c3de0a5c78c4f49b5d051386d0d566f'/>
<id>29fa01621c3de0a5c78c4f49b5d051386d0d566f</id>
<content type='text'>
--HG--
branch : feature/issue-229
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
branch : feature/issue-229
</pre>
</div>
</content>
</entry>
<entry>
<title>Include pytest.ini in MANIFEST.in. Fixes #359.</title>
<updated>2015-03-06T15:50:30+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-03-06T15:50:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=78337beb23e68b062f60f42e1f7baf1d51f2587d'/>
<id>78337beb23e68b062f60f42e1f7baf1d51f2587d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove references to removed files</title>
<updated>2015-01-04T19:40:47+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-01-04T19:40:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=371c355c4f8b406e0390bf964bb4d7f4266ba3e8'/>
<id>371c355c4f8b406e0390bf964bb4d7f4266ba3e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
