<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/command, branch 18.7</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>Merged in sunpoet/setuptools (pull request #158)</title>
<updated>2015-11-28T04:02:24+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-28T04:02:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=111a8d26aadb31496596320cf35ef4f648f7b62b'/>
<id>111a8d26aadb31496596320cf35ef4f648f7b62b</id>
<content type='text'>
Fix package list inconsistency caused by namespace package on Python 3.5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix package list inconsistency caused by namespace package on Python 3.5
</pre>
</div>
</content>
</entry>
<entry>
<title>Make test.test_args a non-data property per Pull Request #155.</title>
<updated>2015-11-28T03:41:52+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-28T03:41:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=a63119c9ebd8e7c578203628023877f7aa3f7e97'/>
<id>a63119c9ebd8e7c578203628023877f7aa3f7e97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract _use_header method</title>
<updated>2015-11-28T02:35:51+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-28T02:35:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=a361ef49cda256e1f53894470cb921d19e04e853'/>
<id>a361ef49cda256e1f53894470cb921d19e04e853</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in grizzlynyo/setuptools/bdist_wininst_gui_scripts (pull request #160)</title>
<updated>2015-11-28T02:27:48+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-28T02:27:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=19a5291393810771f5f2b1dd27c213e35b75f30b'/>
<id>19a5291393810771f5f2b1dd27c213e35b75f30b</id>
<content type='text'>
fix an issue for bdist_wininst with gui_scripts:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix an issue for bdist_wininst with gui_scripts:
</pre>
</div>
</content>
</entry>
<entry>
<title>fix an issue for bdist_wininst with gui_scripts:</title>
<updated>2015-11-21T13:15:23+00:00</updated>
<author>
<name>grizzlynyo</name>
<email>grizzly.nyo@gmail.com</email>
</author>
<published>2015-11-21T13:15:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=864de11cf162c693fe248b609d73545cacb622df'/>
<id>864de11cf162c693fe248b609d73545cacb622df</id>
<content type='text'>
The script header was always generated with non-gui executable.
This was caused by by adjust_header assuming the executable is always an
absolute path.

Fixed by using find_executables() from distutils.

--HG--
branch : bdist_wininst_gui_scripts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The script header was always generated with non-gui executable.
This was caused by by adjust_header assuming the executable is always an
absolute path.

Fixed by using find_executables() from distutils.

--HG--
branch : bdist_wininst_gui_scripts
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix package list inconsistency caused by namespace package on Python 3.5</title>
<updated>2015-11-19T21:54:41+00:00</updated>
<author>
<name>sunpoet</name>
<email>none@none</email>
</author>
<published>2015-11-19T21:54:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=32237eae19b3722b2a1c87bc0a74613c5f12d6fd'/>
<id>32237eae19b3722b2a1c87bc0a74613c5f12d6fd</id>
<content type='text'>
namespace package will be skipped during installation. Since Python 3.5, .pyo files are removed and new .opt-1.pyc (and .opt-2.pyc) files are introduced [1]. However setuptools does not understand that new naming therefore the corresponding foo.opt-1.pyc is still added into package list (via --record). The inconsistency leads to a packaging error.

[1] https://www.python.org/dev/peps/pep-0488/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
namespace package will be skipped during installation. Since Python 3.5, .pyo files are removed and new .opt-1.pyc (and .opt-2.pyc) files are introduced [1]. However setuptools does not understand that new naming therefore the corresponding foo.opt-1.pyc is still added into package list (via --record). The inconsistency leads to a packaging error.

[1] https://www.python.org/dev/peps/pep-0488/
</pre>
</div>
</content>
</entry>
<entry>
<title>issue #464: don't crash using super() on a old-style class</title>
<updated>2015-11-24T18:46:26+00:00</updated>
<author>
<name>Ryan Kelly</name>
<email>ryan@truveris.com</email>
</author>
<published>2015-11-24T18:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=e311cafb5305a445def27fbc79fdc5f098c76728'/>
<id>e311cafb5305a445def27fbc79fdc5f098c76728</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adapt the dist to suppress the version in the requirement when installing scripts under the develop command. Fixes #439.</title>
<updated>2015-11-24T16:35:27+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-24T16:35:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=c23be8f034d8600191decd7e843ae93619d15298'/>
<id>c23be8f034d8600191decd7e843ae93619d15298</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add VersionlessRequirement adapter to suppress the version number in a Distribution. Ref #439.</title>
<updated>2015-11-24T16:32:45+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-24T16:32:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=f4576e373b51fab07eec7f6f2cde3ffa2e04f6c0'/>
<id>f4576e373b51fab07eec7f6f2cde3ffa2e04f6c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Short circuit on skipped behavior, leaving main behavior in the body of the method.</title>
<updated>2015-11-24T15:54:46+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2015-11-24T15:54:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=f05162f5583979a3cc56492b91211cbe54353efa'/>
<id>f05162f5583979a3cc56492b91211cbe54353efa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
