<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/command, branch v62.2.0</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>Fix version produced by dist_info (#3230)</title>
<updated>2022-04-04T09:09:08+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-04-04T09:09:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=3465caca4fb3b9fe2c41c378cb693655a87c1f33'/>
<id>3465caca4fb3b9fe2c41c378cb693655a87c1f33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #3151 from hexagonrecursion/fix-editable</title>
<updated>2022-04-03T20:26:57+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2022-04-03T20:26:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=fd632dfb65e3e72b91f9e0e6002bc581806b4e59'/>
<id>fd632dfb65e3e72b91f9e0e6002bc581806b4e59</id>
<content type='text'>
Fix editable --user installs with build isolation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix editable --user installs with build isolation</pre>
</div>
</content>
</entry>
<entry>
<title>Change dist_info naming to use the same convention as bdist_wheel</title>
<updated>2022-03-29T02:38:32+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-29T02:38:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=4621b08512ab5c682191c13bf8810d7c200d7e34'/>
<id>4621b08512ab5c682191c13bf8810d7c200d7e34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore tags in egg_info but change the idempotency check</title>
<updated>2022-03-29T02:37:04+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-29T02:37:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=cabdd37db15e306060c1b5edcaeb242c218152f8'/>
<id>cabdd37db15e306060c1b5edcaeb242c218152f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix duplicated version tags in egg_info</title>
<updated>2022-03-29T02:03:34+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-29T02:03:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=cc93191764ed8b5de21369eec53aba32e692389c'/>
<id>cc93191764ed8b5de21369eec53aba32e692389c</id>
<content type='text'>
Previously egg_info was adding duplicated tags to the version string.
This was happening because of the version normalization.
When the version normalization was applied to the string the tag was
modified, then later egg_info could no longer recognize it before
applying.

The fix for this problem was to normalize the tag string before
applying.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously egg_info was adding duplicated tags to the version string.
This was happening because of the version normalization.
When the version normalization was applied to the string the tag was
modified, then later egg_info could no longer recognize it before
applying.

The fix for this problem was to normalize the tag string before
applying.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make install consider dist.run_command is overwritten in v61.0.0</title>
<updated>2022-03-25T22:48:21+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-25T22:48:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=93a24585683944a9369d8fd37a824c0bca345af4'/>
<id>93a24585683944a9369d8fd37a824c0bca345af4</id>
<content type='text'>
Starting in v61, setuptools.dist overwrites distutils.dist.run_command
to add auto-discovery functionality on top of the original
implementation.

This change modifies the existing code in setuptools.command.install to
consider that previous change when trying to decide if the install
command was called directly from `setup.py` or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Starting in v61, setuptools.dist overwrites distutils.dist.run_command
to add auto-discovery functionality on top of the original
implementation.

This change modifies the existing code in setuptools.command.install to
consider that previous change when trying to decide if the install
command was called directly from `setup.py` or not.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for setup.py install and dependencies</title>
<updated>2022-03-25T22:47:31+00:00</updated>
<author>
<name>Anderson Bravalheri</name>
<email>andersonbravalheri@gmail.com</email>
</author>
<published>2022-03-25T22:47:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=a5658e826c1191eb1a40bff894fb625af7cccaa9'/>
<id>a5658e826c1191eb1a40bff894fb625af7cccaa9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix editable --user installs with build isolation</title>
<updated>2022-03-06T05:12:22+00:00</updated>
<author>
<name>Andrey Bienkowski</name>
<email>hexagon-recursion@posteo.net</email>
</author>
<published>2022-03-05T12:20:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=b828c32cd49f2281156644fce55d3c40663081dd'/>
<id>b828c32cd49f2281156644fce55d3c40663081dd</id>
<content type='text'>
https://github.com/pypa/setuptools/issues/3019
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/pypa/setuptools/issues/3019
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "XXX: Debugging"</title>
<updated>2022-03-06T04:58:24+00:00</updated>
<author>
<name>Andrey Bienkowski</name>
<email>hexagon-recursion@posteo.net</email>
</author>
<published>2022-03-06T04: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=45340d00688ba29fc3492c52c88c47d14ce918e6'/>
<id>45340d00688ba29fc3492c52c88c47d14ce918e6</id>
<content type='text'>
This reverts commit 6376ad10547315c15dfec719ff3f384e7a94dfc2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 6376ad10547315c15dfec719ff3f384e7a94dfc2.
</pre>
</div>
</content>
</entry>
<entry>
<title>XXX: Debugging</title>
<updated>2022-03-06T03:46:37+00:00</updated>
<author>
<name>Andrey Bienkowski</name>
<email>hexagon-recursion@posteo.net</email>
</author>
<published>2022-03-05T21:43:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=6376ad10547315c15dfec719ff3f384e7a94dfc2'/>
<id>6376ad10547315c15dfec719ff3f384e7a94dfc2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
