<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/docs, branch main</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>Fix typo in docs</title>
<updated>2023-04-25T21:22:59+00:00</updated>
<author>
<name>Bo Bayles</name>
<email>bbayles@gmail.com</email>
</author>
<published>2023-04-25T21:22:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=e32a8462e2af9316670762fbbf2dfda9f8fd0f09'/>
<id>e32a8462e2af9316670762fbbf2dfda9f8fd0f09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Add a note about historical wheel use in requires (#3859)</title>
<updated>2023-04-20T13:20:16+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-04-20T13:20:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=000efbfae1e79d0a9fa9b16b55c4f5a2e90a64dd'/>
<id>000efbfae1e79d0a9fa9b16b55c4f5a2e90a64dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix sphinx error</title>
<updated>2023-04-20T13:17:21+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-04-20T13:17:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=1ba53bb500958f6549a2d3af0753c48599adadf5'/>
<id>1ba53bb500958f6549a2d3af0753c48599adadf5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Add a note about historical `wheel` use in `requires`</title>
<updated>2023-04-20T12:54:21+00:00</updated>
<author>
<name>Michał Górny</name>
<email>mgorny@gentoo.org</email>
</author>
<published>2023-03-15T15:00:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=8f9b212f0171394fe631ae89c25166e2610eecac'/>
<id>8f9b212f0171394fe631ae89c25166e2610eecac</id>
<content type='text'>
Add a note explaining that the `wheel` requirement that used to be
historically used in documentation was incorrect.  This also explains
why it can frequently be found in existing projects, and what problems
it causes.  I find myself repeatedly explaining it, so I think having
a single official source would be better.

Incorporates suggestions from Anderson Bravalheri.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a note explaining that the `wheel` requirement that used to be
historically used in documentation was incorrect.  This also explains
why it can frequently be found in existing projects, and what problems
it causes.  I find myself repeatedly explaining it, so I think having
a single official source would be better.

Incorporates suggestions from Anderson Bravalheri.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use separated import statement to avoid copying names</title>
<updated>2023-04-20T12:45:39+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-04-20T12:45:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=296cb45ea5ced4c6603d4360e18894ef87a7ca77'/>
<id>296cb45ea5ced4c6603d4360e18894ef87a7ca77</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>🎨📝 Fix in-tree PEP 517 backend wrapper example</title>
<updated>2023-04-16T00:26:00+00:00</updated>
<author>
<name>Sviatoslav Sydorenko</name>
<email>wk@sydorenko.org.ua</email>
</author>
<published>2023-04-16T00:26:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=6c4c20a6e8eef17e2a3413fd0676b3d0fa3fd2cb'/>
<id>6c4c20a6e8eef17e2a3413fd0676b3d0fa3fd2cb</id>
<content type='text'>
Before this patch, the documentation suggested the package authors to
declare a fixed set of hooks inherited from setuptools. But this
approach turned out non-future proof. Over time, as `setuptools` added
support for editable installs, it introduced new hooks per PEP 660.
But if one were to follow the outlined example, they'd end up with an
in-tree build backend that does not support editable installs, nor
would it re-export any hooks that might be added in future versions of
setuptools, implementing any new standards that may emerge over time.

This change demonstrates an approach that would allow the thin wrapper
authors to get the new hooks that setuptools may add over time.

Ref: https://github.com/ansible/ansible/pull/79606#discussion_r1080753862
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this patch, the documentation suggested the package authors to
declare a fixed set of hooks inherited from setuptools. But this
approach turned out non-future proof. Over time, as `setuptools` added
support for editable installs, it introduced new hooks per PEP 660.
But if one were to follow the outlined example, they'd end up with an
in-tree build backend that does not support editable installs, nor
would it re-export any hooks that might be added in future versions of
setuptools, implementing any new standards that may emerge over time.

This change demonstrates an approach that would allow the thin wrapper
authors to get the new hooks that setuptools may add over time.

Ref: https://github.com/ansible/ansible/pull/79606#discussion_r1080753862
</pre>
</div>
</content>
</entry>
<entry>
<title>Clarify language re: function arguments</title>
<updated>2023-03-16T02:03:37+00:00</updated>
<author>
<name>Moshe Kaplan</name>
<email>mosheekaplan@gmail.com</email>
</author>
<published>2023-03-16T02:03:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=3ee45341880c2de76717b47c3c1156e69a037432'/>
<id>3ee45341880c2de76717b47c3c1156e69a037432</id>
<content type='text'>
Configured indicates that the function code's itself would be configured, not that it is used by an external party. Switch verb to "used" to be clearer as to how the function is being used.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Configured indicates that the function code's itself would be configured, not that it is used by an external party. Switch verb to "used" to be clearer as to how the function is being used.</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer intersphinx to hardcoded importlib links</title>
<updated>2023-03-08T09:49:03+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-03-08T09:49:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=f175e2cbeb8db465f672dde6ab98603159586c08'/>
<id>f175e2cbeb8db465f672dde6ab98603159586c08</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix link to importlib.resources in the docs</title>
<updated>2023-03-07T23:50:15+00:00</updated>
<author>
<name>Jasper Harrison</name>
<email>legorooj@protonmail.com</email>
</author>
<published>2023-03-07T23:50:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=02e28cdc114edd0b91759e09e2b47c35a0116da4'/>
<id>02e28cdc114edd0b91759e09e2b47c35a0116da4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecate pkg_resources, removing excuse that 'discouraged is not deprecated'.</title>
<updated>2023-03-05T14:34:02+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2023-03-05T14:18:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=a1aeda391a0c462ea53627bcdf50dd4c0daadaed'/>
<id>a1aeda391a0c462ea53627bcdf50dd4c0daadaed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
