<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/tox-git.git, branch 3.8.6</title>
<subtitle>github.com: tox-dev/tox.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/'/>
<entry>
<title>release 3.8.6</title>
<updated>2019-04-03T15:58:53+00:00</updated>
<author>
<name>Bernat Gabor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2019-04-03T15:51:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=20cb9a006d26d95cf2bd7d685e8cfce348882f70'/>
<id>20cb9a006d26d95cf2bd7d685e8cfce348882f70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix #1245 (#1246)</title>
<updated>2019-04-03T15:50:14+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2019-04-03T15:50:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=d073263a945b2efbbf3e238a83df76d7f5e910ff'/>
<id>d073263a945b2efbbf3e238a83df76d7f5e910ff</id>
<content type='text'>
* expose parallel show output not working

* fix #1245
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* expose parallel show output not working

* fix #1245
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1244 from tox-dev/release-3.8.5</title>
<updated>2019-04-03T14:43:42+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2019-04-03T14:43:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=8a1ab68cf1115507d00237173d25bcfb492d8bcb'/>
<id>8a1ab68cf1115507d00237173d25bcfb492d8bcb</id>
<content type='text'>
release 3.8.5</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
release 3.8.5</pre>
</div>
</content>
</entry>
<entry>
<title>release 3.8.5</title>
<updated>2019-04-03T13:54:40+00:00</updated>
<author>
<name>Bernat Gabor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2019-04-03T13:54:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=893816421765cedc4bf14202cefb3dcba7bf2f17'/>
<id>893816421765cedc4bf14202cefb3dcba7bf2f17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix (#1243)</title>
<updated>2019-04-02T22:45:46+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2019-04-02T22:45:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=3337263063db09d6ed7e52ffea0151017fe9c321'/>
<id>3337263063db09d6ed7e52ffea0151017fe9c321</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix over-precise float formatting on Python 3 (#1241)</title>
<updated>2019-04-02T14:05:14+00:00</updated>
<author>
<name>Marius Gedminas</name>
<email>marius@gedmin.as</email>
</author>
<published>2019-04-02T14:05:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=513bc00bf90bd515d99685abd628f93395de22fe'/>
<id>513bc00bf90bd515d99685abd628f93395de22fe</id>
<content type='text'>
* Fix over-precise float formatting on Python 3

Sometimes tox would tell me things like

    ✔ OK py27 in 4.1370000000000005 seconds
    ✔ OK py36 in 14.5 seconds
    ✔ OK py37 in 15.029 seconds
    ✔ OK py35 in 17.519 seconds
    ✔ OK py34 in 18.85 seconds

the almost-rounded-to-3-decimals value was both funny and sad, but
mostly irritating.

This was happening because on Python 3 float.__str__ was changed to be
more precise, and now

    &gt;&gt;&gt; print(4 + 0.137)
    4.1370000000000005

We can avoid the problem if we round the result of the addition instead
of adding a rounded number to the integer number of seconds:

    &gt;&gt;&gt; print(4.137)
    4.137

I've also corrected the plural logic because "0.5 second" is wrong[*]:
https://ell.stackexchange.com/questions/7817/singular-or-plural-for-seconds

* Add myself to CONTRIBUTORS

Also sorted the CONTRIBUTORS file to make sure I've preserved the
alphabetical order, which adjusted some existing names.

* Add a news fragment

* Make the linter happy
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix over-precise float formatting on Python 3

Sometimes tox would tell me things like

    ✔ OK py27 in 4.1370000000000005 seconds
    ✔ OK py36 in 14.5 seconds
    ✔ OK py37 in 15.029 seconds
    ✔ OK py35 in 17.519 seconds
    ✔ OK py34 in 18.85 seconds

the almost-rounded-to-3-decimals value was both funny and sad, but
mostly irritating.

This was happening because on Python 3 float.__str__ was changed to be
more precise, and now

    &gt;&gt;&gt; print(4 + 0.137)
    4.1370000000000005

We can avoid the problem if we round the result of the addition instead
of adding a rounded number to the integer number of seconds:

    &gt;&gt;&gt; print(4.137)
    4.137

I've also corrected the plural logic because "0.5 second" is wrong[*]:
https://ell.stackexchange.com/questions/7817/singular-or-plural-for-seconds

* Add myself to CONTRIBUTORS

Also sorted the CONTRIBUTORS file to make sure I've preserved the
alphabetical order, which adjusted some existing names.

* Add a news fragment

* Make the linter happy
</pre>
</div>
</content>
</entry>
<entry>
<title>Jenkins 2.0 renamed "slave" to "agent" (#1240)</title>
<updated>2019-04-02T12:23:26+00:00</updated>
<author>
<name>Marius Gedminas</name>
<email>marius@gedmin.as</email>
</author>
<published>2019-04-02T12:23:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=5e565cec3578c0ff8a377ea5e86f9ee62f54686d'/>
<id>5e565cec3578c0ff8a377ea5e86f9ee62f54686d</id>
<content type='text'>
See e.g. https://issues.jenkins-ci.org/browse/JENKINS-42816</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See e.g. https://issues.jenkins-ci.org/browse/JENKINS-42816</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1238 from tox-dev/release-3.8.4</title>
<updated>2019-04-01T15:32:47+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2019-04-01T15:32:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=5d5c6792d7336d66bf0cd4377c4ba6d66330f635'/>
<id>5d5c6792d7336d66bf0cd4377c4ba6d66330f635</id>
<content type='text'>
release 3.8.4</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
release 3.8.4</pre>
</div>
</content>
</entry>
<entry>
<title>release 3.8.4</title>
<updated>2019-04-01T14:53:07+00:00</updated>
<author>
<name>Bernat Gabor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2019-04-01T14:53:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=76195e1d1dffb4084452b9f3c22c390db43458ca'/>
<id>76195e1d1dffb4084452b9f3c22c390db43458ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Read file lines as text in python2 as well (#1237)</title>
<updated>2019-04-01T01:39:24+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-04-01T01:39:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/tox-git.git/commit/?id=566b6b6e6db1a54e3adb94f6fe11664fb243505d'/>
<id>566b6b6e6db1a54e3adb94f6fe11664fb243505d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
