<feed xmlns='http://www.w3.org/2005/Atom'>
<title>external_python_setuptools/pkg_resources, branch v38.2.0</title>
<subtitle>Python setuptools
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/'/>
<entry>
<title>Shorten message and update changelog. Ref #1209.</title>
<updated>2017-11-25T15:10:10+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-11-25T15:10:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=b2e99f6731c6ba6fe6bd60f79f2166640f3db21d'/>
<id>b2e99f6731c6ba6fe6bd60f79f2166640f3db21d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improved exception message of pkg_resources.ResolutionError</title>
<updated>2017-11-22T19:40:01+00:00</updated>
<author>
<name>Andreas Maier</name>
<email>andreas.r.maier@gmx.de</email>
</author>
<published>2017-11-22T19:40:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=87e3be861e20d10e395cef7b549cd660b3dcab26'/>
<id>87e3be861e20d10e395cef7b549cd660b3dcab26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into drop-py26</title>
<updated>2017-11-20T02:39:41+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-11-20T02:39:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=e4572e8c828cf5c82e072e01672283b5f27396a4'/>
<id>e4572e8c828cf5c82e072e01672283b5f27396a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unnecessary serialization/parsing of extras in EntryPoint.__init__. Fixes #1132.</title>
<updated>2017-10-12T20:28:55+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-10-12T20:28:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=4ee5c6510006d384f9ddd444824367ccaf67f0c9'/>
<id>4ee5c6510006d384f9ddd444824367ccaf67f0c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use simpler Requirement from packaging.requirements</title>
<updated>2017-10-12T20:08:53+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-10-12T20:08:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=d1f16fdd849264795bfa0a383581ac4ffefeec58'/>
<id>d1f16fdd849264795bfa0a383581ac4ffefeec58</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>2017-10-12T10:46:37+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-10-12T10:40:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=75b870b9a6233338f24841e86df88f03697f71f2'/>
<id>75b870b9a6233338f24841e86df88f03697f71f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up resource warnings during tests</title>
<updated>2017-09-16T19:36:34+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2017-09-16T18:23:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=b1e47b43f3d2b972057ebe4c564b0ed03d39cd3d'/>
<id>b1e47b43f3d2b972057ebe4c564b0ed03d39cd3d</id>
<content type='text'>
When tests are invoked with the Python flag -Wall, warnings appear in
the form of:

  ResourceWarning: unclosed file ...

Close all files and resources deterministically to avoid such warnings.
Most often, easiest to do using a context manager.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When tests are invoked with the Python flag -Wall, warnings appear in
the form of:

  ResourceWarning: unclosed file ...

Close all files and resources deterministically to avoid such warnings.
Most often, easiest to do using a context manager.
</pre>
</div>
</content>
</entry>
<entry>
<title>Screen entries before sorting in find_on_path. Ref #1134.</title>
<updated>2017-09-09T16:26:51+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-09-09T16:26:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=d3fc6036c7fe25ee7ffee3fc9f0b75f2b9d5a58a'/>
<id>d3fc6036c7fe25ee7ffee3fc9f0b75f2b9d5a58a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract function for resolving the dist factory for a path item entry</title>
<updated>2017-09-09T16:14:46+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-09-09T16:14:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=6f10cff41ca441a91ddb9182c591a4a2e170633a'/>
<id>6f10cff41ca441a91ddb9182c591a4a2e170633a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Create a NoDists factory for returning no dists, whose boolean value is False.</title>
<updated>2017-09-09T16:07:50+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-09-09T16:04:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant-next/external_python_setuptools/commit/?id=9ff9a0d6a79b8d4b610f8e8780586dd2114856d0'/>
<id>9ff9a0d6a79b8d4b610f8e8780586dd2114856d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
