<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools, branch feature/distutils-docs</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Merge pull request #2644 from tirkarthi/fix-threading</title>
<updated>2021-04-24T15:59:59+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2021-04-24T15:59:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=00df794d6f317654fea3e30799b610dcd26903d6'/>
<id>00df794d6f317654fea3e30799b610dcd26903d6</id>
<content type='text'>
Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10</pre>
</div>
</content>
</entry>
<entry>
<title>Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10</title>
<updated>2021-04-17T06:29:23+00:00</updated>
<author>
<name>Karthikeyan Singaravelan</name>
<email>tir.karthi@gmail.com</email>
</author>
<published>2021-04-17T06:21:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=87efb79effe2ed8a914a6e9f3855c4b925c52513'/>
<id>87efb79effe2ed8a914a6e9f3855c4b925c52513</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add rfc822_unescape</title>
<updated>2021-04-10T10:25:15+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-04-10T09:30:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=c18ed8706d759e11d7bb7e9070a1897ee2f1e979'/>
<id>c18ed8706d759e11d7bb7e9070a1897ee2f1e979</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor dist.read_pkg_file</title>
<updated>2021-04-10T09:29:16+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-04-10T09:29:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=78434a30184949c95bac3fab8b4c910e9f7266bb'/>
<id>78434a30184949c95bac3fab8b4c910e9f7266bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use importlib.util.spec_from_loader in find_spec</title>
<updated>2021-04-08T22:13:11+00:00</updated>
<author>
<name>Sviatoslav Sydorenko</name>
<email>wk@sydorenko.org.ua</email>
</author>
<published>2021-04-08T22:13:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=b5f3ae57debb9ef018aedc92dd0a3704a1d06fa7'/>
<id>b5f3ae57debb9ef018aedc92dd0a3704a1d06fa7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop deprecated `find_module` from vendor importer</title>
<updated>2021-04-08T21:45:40+00:00</updated>
<author>
<name>Sviatoslav Sydorenko</name>
<email>wk@sydorenko.org.ua</email>
</author>
<published>2021-04-08T21:45:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=dd1453b3c2ebcc4460b088979576876e89372302'/>
<id>dd1453b3c2ebcc4460b088979576876e89372302</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement `find_spec` in vendored module importers</title>
<updated>2021-04-08T21:42:24+00:00</updated>
<author>
<name>Sviatoslav Sydorenko</name>
<email>wk@sydorenko.org.ua</email>
</author>
<published>2021-04-08T17:58:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=c826dffc2fd99de0431ee2a8b483868ab54e9cdc'/>
<id>c826dffc2fd99de0431ee2a8b483868ab54e9cdc</id>
<content type='text'>
This change makes the import warning emitted by Python 3.10 disappear
but implementing the hook that is supposed to replace the old import
mechanism.

Refs:
* https://bugs.python.org/issue42134
* https://bugs.python.org/issue43540
* https://github.com/pypa/setuptools/issues/2632#issuecomment-815701078

Fixes #2632

Co-authored-by: Jason R. Coombs &lt;jaraco@jaraco.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change makes the import warning emitted by Python 3.10 disappear
but implementing the hook that is supposed to replace the old import
mechanism.

Refs:
* https://bugs.python.org/issue42134
* https://bugs.python.org/issue43540
* https://github.com/pypa/setuptools/issues/2632#issuecomment-815701078

Fixes #2632

Co-authored-by: Jason R. Coombs &lt;jaraco@jaraco.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Small changes</title>
<updated>2021-04-03T19:34:00+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-04-03T19:34:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=608c376e86326c879dd52b56660b2247a3ca854e'/>
<id>608c376e86326c879dd52b56660b2247a3ca854e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change deprecation warning</title>
<updated>2021-04-03T19:13:18+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-03-28T15:34:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=0f34639e5aa630b8cbe32af9cfe8dfec7be890e7'/>
<id>0f34639e5aa630b8cbe32af9cfe8dfec7be890e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Additional test cases</title>
<updated>2021-04-03T19:13:18+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-03-28T12:32:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=1da769c049093b6492b63422272f56b6e95df39d'/>
<id>1da769c049093b6492b63422272f56b6e95df39d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
