<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/extern, 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>Remove pypackaging from extern in setuptools</title>
<updated>2023-01-23T11:08:46+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2023-01-23T11:08:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=459e23ec528a191b330c0044a49b2cb0326ee035'/>
<id>459e23ec528a191b330c0044a49b2cb0326ee035</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>setuptools/vendored: drop `nspektr`</title>
<updated>2022-07-02T14:09:17+00:00</updated>
<author>
<name>Benoit Pierre</name>
<email>benoit.pierre@gmail.com</email>
</author>
<published>2022-06-28T09:27:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=2b8a94c0d995583e1bec8a91ff8bb8c9ceec6ef7'/>
<id>2b8a94c0d995583e1bec8a91ff8bb8c9ceec6ef7</id>
<content type='text'>
No needed anymore.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No needed anymore.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move _validate_pyproject to config</title>
<updated>2022-03-30T18:41:38+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-30T18:41:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=0a5e992ea63b123982df60fdaec5bd2dce5e3248'/>
<id>0a5e992ea63b123982df60fdaec5bd2dce5e3248</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 'main' into experimental/support-pyproject</title>
<updated>2022-03-16T15:51:11+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-16T15:51:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=a70240af2c4eade71f2900cc0fba9369939b2cd4'/>
<id>a70240af2c4eade71f2900cc0fba9369939b2cd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Vendor nspektr. Utilize it in Distribution._install_dependencies.</title>
<updated>2022-03-13T17:04:04+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2022-03-13T17:04:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=04f6a194c4acf810d4f3ca3c901d6cc1cc955db1'/>
<id>04f6a194c4acf810d4f3ca3c901d6cc1cc955db1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `validate-pyproject` as a vendored dependency</title>
<updated>2022-03-05T09:58:49+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2021-12-03T10:04:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=771488dabe71374a735b266c38e6b8c1fd94a02d'/>
<id>771488dabe71374a735b266c38e6b8c1fd94a02d</id>
<content type='text'>
In order to minimise dependencies, `validate-pyproject` has the ability
to "dump" only the code necessary to run the validations to a given
directory. This special strategy is used instead of the default
`pip install -t`.

The idea of using JSONSchema for validation was suggested in #2671,
and the rationale for that approach is further discussed in
https://github.com/abravalheri/validate-pyproject/blob/main/docs/faq.rst

Using a library such as `validate-pyproject` has the advantage of
incentive sing reuse and collaboration with other projects.

Currently `validate-pyproject` ships a JSONSchema for the proposed
use of `pyproject.toml` as means of configuration for setuptools.
In the future, if there is interest, setuptools could also ship its own
schema and just use the shared infrastructure of `validate-pyproject`
(by advertising the schemas via entry-points).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to minimise dependencies, `validate-pyproject` has the ability
to "dump" only the code necessary to run the validations to a given
directory. This special strategy is used instead of the default
`pip install -t`.

The idea of using JSONSchema for validation was suggested in #2671,
and the rationale for that approach is further discussed in
https://github.com/abravalheri/validate-pyproject/blob/main/docs/faq.rst

Using a library such as `validate-pyproject` has the advantage of
incentive sing reuse and collaboration with other projects.

Currently `validate-pyproject` ships a JSONSchema for the proposed
use of `pyproject.toml` as means of configuration for setuptools.
In the future, if there is interest, setuptools could also ship its own
schema and just use the shared infrastructure of `validate-pyproject`
(by advertising the schemas via entry-points).
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `tomli` as vendorised dependency</title>
<updated>2022-03-05T09:58:48+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2021-12-02T19:23:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=099ac60fba6f63d9658733f10c5525ecfb390eee'/>
<id>099ac60fba6f63d9658733f10c5525ecfb390eee</id>
<content type='text'>
This eventually will allow reading project metadata directly from
`pyproject.toml`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This eventually will allow reading project metadata directly from
`pyproject.toml`
</pre>
</div>
</content>
</entry>
<entry>
<title>Update vendoring for importlib_metadata to support vendored dependencies typing_extensions and zipp.</title>
<updated>2022-02-06T16:10:29+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2022-02-06T15:08:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=988bf129164b8d46985c4d8b150086eedd95e37d'/>
<id>988bf129164b8d46985c4d8b150086eedd95e37d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Vendor jaraco.text with setuptools.</title>
<updated>2022-02-05T14:23:01+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2022-02-05T00:34:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=430cacd191440bee5140459b4bb1da1d1cba244b'/>
<id>430cacd191440bee5140459b4bb1da1d1cba244b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add importlib_resources and importlib_metadata to vendored packages.</title>
<updated>2022-02-05T14:23:01+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2021-12-04T02:48:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=7a70ca5d78562b0973030a0e18a5552c4bb5011f'/>
<id>7a70ca5d78562b0973030a0e18a5552c4bb5011f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
