<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/command/setopt.py, branch v41.2.0</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 spurious executable permissions</title>
<updated>2018-07-27T12:53:45+00:00</updated>
<author>
<name>Miro Hrončok</name>
<email>miro@hroncok.cz</email>
</author>
<published>2018-07-27T12:36:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=760e2e1df9c9c9d1fc072e7b6ad9df4c32bfc835'/>
<id>760e2e1df9c9c9d1fc072e7b6ad9df4c32bfc835</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle"</title>
<updated>2017-02-24T16:49:51+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-02-24T16:49:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=3d0cc355fb5e8012cb8c72f0e25042a5a44f31d6'/>
<id>3d0cc355fb5e8012cb8c72f0e25042a5a44f31d6</id>
<content type='text'>
This reverts commit 089cdeb489a0fa94d11b7307b54210ef9aa40511, reversing
changes made to aaec654d804cb78dbb6391afff721a63f26a71cd.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 089cdeb489a0fa94d11b7307b54210ef9aa40511, reversing
changes made to aaec654d804cb78dbb6391afff721a63f26a71cd.
</pre>
</div>
</content>
</entry>
<entry>
<title>Strip out vendored packages and require them instead. Ref #581.</title>
<updated>2017-01-02T03:34:39+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2017-01-02T03:34:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=ff371f18f0076bc63da05334f7e551c1cc29e10d'/>
<id>ff371f18f0076bc63da05334f7e551c1cc29e10d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix quantity of blank lines.</title>
<updated>2016-10-18T13:29:34+00:00</updated>
<author>
<name>stepshal</name>
<email>nessento@openmailbox.org</email>
</author>
<published>2016-10-18T13:24:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=31bd37c6ac8de9e8c1bacebc2d8e1215df91eb96'/>
<id>31bd37c6ac8de9e8c1bacebc2d8e1215df91eb96</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use OrderedDict to retain deterministic ordering of version info in egg_info command. Remove lexicographic ordering in setopt.edit_config. Ref #553</title>
<updated>2016-04-20T13:25:21+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2016-04-20T13:25:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=085247fa441f9b0fac05117ca1a3283e3510fb32'/>
<id>085247fa441f9b0fac05117ca1a3283e3510fb32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Preserve order of egg_info section in setup.cfg</title>
<updated>2016-04-19T17:34:47+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>davanum@gmail.com</email>
</author>
<published>2016-04-18T19:08:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=df05ebf3e88858ae7ac74071bd20c86782e1415d'/>
<id>df05ebf3e88858ae7ac74071bd20c86782e1415d</id>
<content type='text'>
egg_info is the dictionary with information that is injected
into setup.cfg. edit_config uses RawConfigParser which uses
collections.OrderedDict for all the data. When we use a
simple dict(), when we loop through items in edit_config, we
see random behavior as a result the fields
tag_svn_revision/tag_date/tag_build are added to the setup.cfg
randomly. So if we sort the items by key when we traverse items
we will get deterministic output as RawConfigParser uses
OrderedDict internally by default.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
egg_info is the dictionary with information that is injected
into setup.cfg. edit_config uses RawConfigParser which uses
collections.OrderedDict for all the data. When we use a
simple dict(), when we loop through items in edit_config, we
see random behavior as a result the fields
tag_svn_revision/tag_date/tag_build are added to the setup.cfg
randomly. So if we sort the items by key when we traverse items
we will get deterministic output as RawConfigParser uses
OrderedDict internally by default.
</pre>
</div>
</content>
</entry>
<entry>
<title>Modeling after Astropy's technique for bundling libraries, the imports are now much cleaner. Thanks @embray. Ref #229.</title>
<updated>2015-12-31T21:30:47+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-12-31T21:30:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=952c1bafda1929c74c737646aa025e6ffad6632e'/>
<id>952c1bafda1929c74c737646aa025e6ffad6632e</id>
<content type='text'>
--HG--
branch : feature/issue-229
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
branch : feature/issue-229
</pre>
</div>
</content>
</entry>
<entry>
<title>Update vendoring technique to match that used for packaging. Ref #229.</title>
<updated>2015-12-31T16:51:01+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-12-31T16:51:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=06872bb0bbbeb953e90bd0941444b0d499056557'/>
<id>06872bb0bbbeb953e90bd0941444b0d499056557</id>
<content type='text'>
--HG--
branch : feature/issue-229
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
branch : feature/issue-229
</pre>
</div>
</content>
</entry>
<entry>
<title>Use six for Python 2 compatibility</title>
<updated>2014-07-05T19:06:51+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2014-07-05T19:06:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=b49435397a5094f94678adf3549cc8941aa469b7'/>
<id>b49435397a5094f94678adf3549cc8941aa469b7</id>
<content type='text'>
--HG--
branch : feature/issue-229
extra : source : 7b1997ececc5772798ce33a0f8e77387cb55a977
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
branch : feature/issue-229
extra : source : 7b1997ececc5772798ce33a0f8e77387cb55a977
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed PEP 8 compliancy of the setuptools.command package</title>
<updated>2014-06-18T17:31:05+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2014-06-18T17:31:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-setuptools-git.git/commit/?id=8e3f9d3253d1d0fb820dad4249d5110d017595c1'/>
<id>8e3f9d3253d1d0fb820dad4249d5110d017595c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
