<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/wheel-git.git/tests, branch 0.31.0</title>
<subtitle>github.com: pypa/wheel.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/'/>
<entry>
<title>Simplified the setup.py files in the example distributions</title>
<updated>2018-04-01T20:22:23+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2018-04-01T20:22:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=8004cbe8dc8be834a40717e3d943af3cc28938cd'/>
<id>8004cbe8dc8be834a40717e3d943af3cc28938cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added missing __init__.py to the unicode test distribution</title>
<updated>2018-04-01T14:58:16+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2018-04-01T14:58:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=0421a804182507396ce0646f1b4c2c1523f6a184'/>
<id>0421a804182507396ce0646f1b4c2c1523f6a184</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed obsolete JSON schema file</title>
<updated>2018-03-31T21:22:59+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2018-03-31T21:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=0c90e172d9e4d747b975657b79833477e43d5251'/>
<id>0c90e172d9e4d747b975657b79833477e43d5251</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer dict literals over calls to dict() (#218)</title>
<updated>2018-03-31T18:02:46+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-03-31T18:02:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=e5ded14f401ee1e8099fd1c46931c6e251017dfa'/>
<id>e5ded14f401ee1e8099fd1c46931c6e251017dfa</id>
<content type='text'>
dict literals are idiomatic and Pythonic patterns that utilize modern
syntax. A dict literal is always slightly faster than a call to dict().

$ python3 -m timeit 'dict(a=1, b=2, c=3)'
10000000 loops, best of 3: 0.187 usec per loop
$ python3 -m timeit '{"a": 1, "b": 2, "c": 3}'
10000000 loops, best of 3: 0.0705 usec per loop</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
dict literals are idiomatic and Pythonic patterns that utilize modern
syntax. A dict literal is always slightly faster than a call to dict().

$ python3 -m timeit 'dict(a=1, b=2, c=3)'
10000000 loops, best of 3: 0.187 usec per loop
$ python3 -m timeit '{"a": 1, "b": 2, "c": 3}'
10000000 loops, best of 3: 0.0705 usec per loop</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed wrong character encodings used to write RECORD</title>
<updated>2018-03-31T17:49:36+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2018-03-31T16:42:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=f881361a9b0ad620f9e3da749812ec64a9f6bcfe'/>
<id>f881361a9b0ad620f9e3da749812ec64a9f6bcfe</id>
<content type='text'>
RECORD should always be read and written as UTF-8.
Fixes #207.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RECORD should always be read and written as UTF-8.
Fixes #207.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't create metadata.json anymore</title>
<updated>2018-03-30T08:07:52+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2018-03-30T07:40:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=595e4a8fc6bed54091ead713933c8ec8ebd1bb51'/>
<id>595e4a8fc6bed54091ead713933c8ec8ebd1bb51</id>
<content type='text'>
This was a thing in the now-withdrawn PEP 426.
Fixes #195.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was a thing in the now-withdrawn PEP 426.
Fixes #195.
</pre>
</div>
</content>
</entry>
<entry>
<title>Metadata 2.1 updates (#232)</title>
<updated>2018-03-21T18:42:54+00:00</updated>
<author>
<name>Dustin Ingram</name>
<email>di@users.noreply.github.com</email>
</author>
<published>2018-03-21T18:42:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=4fcc31d12b6cde517674a19077f89e740bf4c69f'/>
<id>4fcc31d12b6cde517674a19077f89e740bf4c69f</id>
<content type='text'>
Updated metadata version to 2.1 and dropped DESCRIPTION.rst from the list of created files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updated metadata version to 2.1 and dropped DESCRIPTION.rst from the list of created files.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix handling of requirements' environment markers. (#213)</title>
<updated>2018-01-03T16:03:48+00:00</updated>
<author>
<name>Benoit Pierre</name>
<email>benoit.pierre@gmail.com</email>
</author>
<published>2018-01-03T16:03:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=447f26571e5221758d2d3e39470454104bdf9e13'/>
<id>447f26571e5221758d2d3e39470454104bdf9e13</id>
<content type='text'>
Parenthesize markers before adding the `and extra == "..."` clause
so it does not break the logic of the preceding expression when
`or` operands are used.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Parenthesize markers before adding the `and extra == "..."` clause
so it does not break the logic of the preceding expression when
`or` operands are used.</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed single digit versions not working</title>
<updated>2017-12-30T21:57:12+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2017-12-30T21:57:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=88c480e7679700b43810cd6020fef9104bef6237'/>
<id>88c480e7679700b43810cd6020fef9104bef6237</id>
<content type='text'>
Fixes #208.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #208.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added JSON schema item for the new description_content_type field</title>
<updated>2017-09-06T19:25:20+00:00</updated>
<author>
<name>Alex Grönholm</name>
<email>alex.gronholm@nextday.fi</email>
</author>
<published>2017-09-06T19:25:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/wheel-git.git/commit/?id=78a89bb0226130b29378163913f5836a1659a0c8'/>
<id>78a89bb0226130b29378163913f5836a1659a0c8</id>
<content type='text'>
This was introduced by setuptools 36.4.0 and was causing a test failure
in this project.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was introduced by setuptools 36.4.0 and was causing a test failure
in this project.
</pre>
</div>
</content>
</entry>
</feed>
