<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/pkg_resources/tests, branch v67.3.2</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Add DeprecationWarning to `pkg_resources.declare_namespace`</title>
<updated>2023-02-13T19:09:28+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-07-06T22:35:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=2177e1f813a6aa05c29a8f36d787171d954465c7'/>
<id>2177e1f813a6aa05c29a8f36d787171d954465c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Consistently use unittest.mock in tests</title>
<updated>2022-10-17T12:12:46+00:00</updated>
<author>
<name>Miro Hrončok</name>
<email>miro@hroncok.cz</email>
</author>
<published>2022-10-17T12:03:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=c4b556166f9371d0cbc24d50dab83325aac77a3e'/>
<id>c4b556166f9371d0cbc24d50dab83325aac77a3e</id>
<content type='text'>
 - Some tests used unittest.mock from the standard library
 - Some tests used mock from PyPI
 - Some tests tried to import unittest.mock with a fallback to mock
   (the import never fails on Python 3.7+, older Pythons are not supported)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - Some tests used unittest.mock from the standard library
 - Some tests used mock from PyPI
 - Some tests tried to import unittest.mock with a fallback to mock
   (the import never fails on Python 3.7+, older Pythons are not supported)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests for normalized package name resolution</title>
<updated>2022-03-24T11:01:25+00:00</updated>
<author>
<name>Łukasz Daniluk</name>
<email>lukasz.dan@gmail.com</email>
</author>
<published>2022-03-06T22:11:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=64351e5f008276a6ca5a1efd65771ebc6325c067'/>
<id>64351e5f008276a6ca5a1efd65771ebc6325c067</id>
<content type='text'>
Due to PEP 503 package requirements might be specified using normalized
name which won't be resolved by WorkingSet.

Signed-off-by: Łukasz Daniluk &lt;lukasz.dan@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Due to PEP 503 package requirements might be specified using normalized
name which won't be resolved by WorkingSet.

Signed-off-by: Łukasz Daniluk &lt;lukasz.dan@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace invalid local version with a valid form.</title>
<updated>2021-11-15T22:45:48+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2021-11-15T22:45:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e841867c98ff19811aaa85c3b131152958ccc129'/>
<id>e841867c98ff19811aaa85c3b131152958ccc129</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Failing test for #2489</title>
<updated>2020-12-21T20:50:42+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>thatch@fb.com</email>
</author>
<published>2020-12-14T17:37:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=44d45ae20a663f1cb75812657cee1244e3dddb58'/>
<id>44d45ae20a663f1cb75812657cee1244e3dddb58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix tests with pytest 6.2</title>
<updated>2020-12-13T10:27:23+00:00</updated>
<author>
<name>Chih-Hsuan Yen</name>
<email>yan12125@gmail.com</email>
</author>
<published>2020-12-13T10:01:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=701eee9e53dcbfe200bef46420da420052699e68'/>
<id>701eee9e53dcbfe200bef46420da420052699e68</id>
<content type='text'>
The latest pytest deprecates pytest.yield_fixture in favor of
pytest.fixture [1]. The changelog [2] says that both are the same.

[1] https://github.com/pytest-dev/pytest/pull/7988
[2] https://docs.pytest.org/en/stable/changelog.html#pytest-6-2-0-2020-12-12
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The latest pytest deprecates pytest.yield_fixture in favor of
pytest.fixture [1]. The changelog [2] says that both are the same.

[1] https://github.com/pytest-dev/pytest/pull/7988
[2] https://docs.pytest.org/en/stable/changelog.html#pytest-6-2-0-2020-12-12
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Python 2 compatibility</title>
<updated>2020-08-16T11:15:18+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-08-16T04:29:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=fb7ab81a3d080422687bad71f9ae9d36eeefbee2'/>
<id>fb7ab81a3d080422687bad71f9ae9d36eeefbee2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>👹 Feed the hobgoblins (delint).</title>
<updated>2020-05-13T01:05:32+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-05-13T00:34:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=322734cfa00d3d5bffb9af02c780ee8e33142e5b'/>
<id>322734cfa00d3d5bffb9af02c780ee8e33142e5b</id>
<content type='text'>
Fixes #2107
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #2107
</pre>
</div>
</content>
</entry>
<entry>
<title>To assess the directoriness of an entry, include the path of that entry.</title>
<updated>2020-05-10T20:18:22+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-05-10T20:18:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=5638e4783fc0f4f5cc40e7ecfab0500983826fa0'/>
<id>5638e4783fc0f4f5cc40e7ecfab0500983826fa0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore parameter</title>
<updated>2020-05-10T19:52:50+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-05-10T19:51:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=fdee8026f5d58ee7cee0fad3c0b7e0ae7d5272ba'/>
<id>fdee8026f5d58ee7cee0fad3c0b7e0ae7d5272ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
