Skip to content

Commit 14c0bee

Browse files
authored
Merge pull request #1226 from tox-dev/release-3.8.2
release 3.8.2
2 parents b27228e + b3e808e commit 14c0bee

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

docs/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@ with advance notice in the **Deprecations** section of releases.
1111

1212
.. towncrier release notes start
1313
14+
v3.8.2 (2019-03-29)
15+
-------------------
16+
17+
Bugfixes
18+
^^^^^^^^
19+
20+
- using -v and -e connected (as -ve) fails - by :user:`gaborbernat`
21+
`#1218 <https://github.com/tox-dev/tox/issues/1218>`_
22+
- Changes to the plugin tester module (cmd no longer sets ``PYTHONPATH``), and ``action.popen`` no longer returns the
23+
command identifier information from within the logs. No public facing changes.
24+
`#1222 <https://github.com/tox-dev/tox/issues/1222>`_
25+
- Spinner fails in CI on ``UnicodeEncodeError`` - by :user:`gaborbernat`
26+
`#1223 <https://github.com/tox-dev/tox/issues/1223>`_
27+
28+
1429
v3.8.1 (2019-03-28)
1530
-------------------
1631

docs/changelog/1218.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/1222.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/changelog/1223.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/tox/util/stdlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def is_main_thread():
1818
@contextmanager
1919
def suppress_output():
2020
"""suppress both stdout and stderr outputs"""
21-
if sys.version_info > (3, 4):
21+
if sys.version_info >= (3, 5):
2222
from contextlib import redirect_stdout, redirect_stderr
2323
else:
2424

0 commit comments

Comments
 (0)