<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/pkg_resources, 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>Make clear which package is calling pkg_resources.declare_namespaces</title>
<updated>2023-02-15T14:39:10+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-02-15T14:39:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e3025318f790880e68100031127676fb0e492542'/>
<id>e3025318f790880e68100031127676fb0e492542</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add links explaining deprecations</title>
<updated>2023-02-13T19:23:36+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-02-13T19:23:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=de2361c389304603f0daf70b0ee0647af0b9e981'/>
<id>de2361c389304603f0daf70b0ee0647af0b9e981</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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>Remove pypackaging from extern in pkg_resources</title>
<updated>2023-01-23T11:09:00+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-23T11:09:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e96930187e18e8233f2182c17df0a8d862299166'/>
<id>e96930187e18e8233f2182c17df0a8d862299166</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update pkg_resources errors to be compatible with newer packaging</title>
<updated>2023-01-23T10:18:06+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-23T10:18:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e44e525653f31f41f863bcd150f3a2d78b705601'/>
<id>e44e525653f31f41f863bcd150f3a2d78b705601</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update vendored packaging/jaraco.context for pkg_resources</title>
<updated>2023-01-23T10:00:28+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-23T10:00:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=2aad1a041e9c7a9e89521f341fc9fa882189a57f'/>
<id>2aad1a041e9c7a9e89521f341fc9fa882189a57f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Flip conditionals around package finders in pkg_resources (#3685)</title>
<updated>2023-01-20T11:13:38+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-20T11:13:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e03f8839a29f0640df7d6f107874aa8fb16c1470'/>
<id>e03f8839a29f0640df7d6f107874aa8fb16c1470</id>
<content type='text'>
- In Python 3.3+ importlib.machinery.FileFinder is always present,
  therefore we no longer need to keep the conditional
- In Python 3.12+ pkgutil.ImpImporter is removed, so we need a conditional
  to avoid using it directly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- In Python 3.3+ importlib.machinery.FileFinder is always present,
  therefore we no longer need to keep the conditional
- In Python 3.12+ pkgutil.ImpImporter is removed, so we need a conditional
  to avoid using it directly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid unecessarily lengthy traceback</title>
<updated>2023-01-18T18:58:06+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-18T18:58:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=30c8c9b3f62a0c61ab0515fad4deeec88a5758d4'/>
<id>30c8c9b3f62a0c61ab0515fad4deeec88a5758d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add informative notes for the InvalidVersion error (LegacyVersion removal)</title>
<updated>2023-01-18T18:37:34+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-18T18:37:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=c6686252b025f4f07fad9e3fb152a073d4ac3f52'/>
<id>c6686252b025f4f07fad9e3fb152a073d4ac3f52</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove conditional for FileFinder in pkg_resources</title>
<updated>2023-01-18T14:58:16+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-11-15T16:56:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=839dc598b6df70e5c1b32b1c5b8a88a7eaddb1a0'/>
<id>839dc598b6df70e5c1b32b1c5b8a88a7eaddb1a0</id>
<content type='text'>
FileFiler should always be present in Python 3.3+
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FileFiler should always be present in Python 3.3+
</pre>
</div>
</content>
</entry>
</feed>
