<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/build_meta.py, branch bugfix/3525-error</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>Add compat mode to editable install</title>
<updated>2022-08-03T19:49:49+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-08-02T17:11:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=da5af04f0a8c2ab79454e0670039e19b54f5eddc'/>
<id>da5af04f0a8c2ab79454e0670039e19b54f5eddc</id>
<content type='text'>
This is only a transitional measure that can be temporarily used by
users to help them to adapt to the PEP 660 implementation.

In this commit the argument for the `editable_wheel` command is changed
from the flag form `--strict` to `--mode=strict`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is only a transitional measure that can be temporarily used by
users to help them to adapt to the PEP 660 implementation.

In this commit the argument for the `editable_wheel` command is changed
from the flag form `--strict` to `--mode=strict`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add prepare_metadata_for_build_editable to build_meta.__all__</title>
<updated>2022-08-02T11:47:12+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-08-02T11:47:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=2b7c44fd88d5bc04bd4c68232231eeb190e3e2e3'/>
<id>2b7c44fd88d5bc04bd4c68232231eeb190e3e2e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge 'upstream/main' into feature/pep660</title>
<updated>2022-07-21T09:35:58+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-07-21T09:35:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=d0d8b6360413696c10e3a6d485dad3cb2524561d'/>
<id>d0d8b6360413696c10e3a6d485dad3cb2524561d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build_meta: execute code directly</title>
<updated>2022-07-04T12:21:57+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-20T18:55:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=199deb1d4cdaff5d1936ee8000f7a5a252830d96'/>
<id>199deb1d4cdaff5d1936ee8000f7a5a252830d96</id>
<content type='text'>
The `exec` function in Python should be able to execute code directly.
Using `compile` and then `exec` seem to cause an overhead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `exec` function in Python should be able to execute code directly.
Using `compile` and then `exec` seem to cause an overhead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow users to opt-into previous "develop" behavior</title>
<updated>2022-06-25T19:07:27+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-25T18:51:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=16483185a2739d5f613430f2f4ba83883eb6bb96'/>
<id>16483185a2739d5f613430f2f4ba83883eb6bb96</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build_meta: Allow dist-info and egg-info to coexist</title>
<updated>2022-06-21T10:37:13+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-21T10:09:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=fd5fcbb1ec200ba2b0c657628a591ce2255998e3'/>
<id>fd5fcbb1ec200ba2b0c657628a591ce2255998e3</id>
<content type='text'>
PEP 517 does not care if other directories/files are left behind in the
`metadata_directory`, as long as a `.dist_info` directory is produced at
the root. We can leave the `.egg-info` directory behind, so this way
we don't have to run it again when listing files from `build_py`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PEP 517 does not care if other directories/files are left behind in the
`metadata_directory`, as long as a `.dist_info` directory is produced at
the root. We can leave the `.egg-info` directory behind, so this way
we don't have to run it again when listing files from `build_py`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Address errors in tests for Windows</title>
<updated>2022-06-17T09:48:45+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-17T09:48:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=a19c4dfb8f7fda86a755b181bbf5819fc4139ab7'/>
<id>a19c4dfb8f7fda86a755b181bbf5819fc4139ab7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build_meta.build_editable: Add tests for config_settings</title>
<updated>2022-06-16T16:24:03+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-16T16:24:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=df4419251fa5742fd5b2b4d5a9f11a3915be19ba'/>
<id>df4419251fa5742fd5b2b4d5a9f11a3915be19ba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Consider config_settings in build_editable</title>
<updated>2022-06-16T13:23:39+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-16T13:23:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=46c16363c7c90dfcb2d3e5883ad6c7a449f4c5ad'/>
<id>46c16363c7c90dfcb2d3e5883ad6c7a449f4c5ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer 'verbose' and 'quiet' instead of 'log-level'</title>
<updated>2022-06-16T12:17:44+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-06-16T12:17:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=4092e3b2db8f709c4bc91399ac3383b8be234307'/>
<id>4092e3b2db8f709c4bc91399ac3383b8be234307</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
