Skip to content

Commit

Permalink
release 3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Mar 29, 2019
1 parent b27228e commit b3e808e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
15 changes: 15 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start
v3.8.2 (2019-03-29)
-------------------

Bugfixes
^^^^^^^^

- using -v and -e connected (as -ve) fails - by :user:`gaborbernat`
`#1218 <https://github.com/tox-dev/tox/issues/1218>`_
- Changes to the plugin tester module (cmd no longer sets ``PYTHONPATH``), and ``action.popen`` no longer returns the
command identifier information from within the logs. No public facing changes.
`#1222 <https://github.com/tox-dev/tox/issues/1222>`_
- Spinner fails in CI on ``UnicodeEncodeError`` - by :user:`gaborbernat`
`#1223 <https://github.com/tox-dev/tox/issues/1223>`_


v3.8.1 (2019-03-28)
-------------------

Expand Down
1 change: 0 additions & 1 deletion docs/changelog/1218.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions docs/changelog/1222.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/1223.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/tox/util/stdlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def is_main_thread():
@contextmanager
def suppress_output():
"""suppress both stdout and stderr outputs"""
if sys.version_info > (3, 4):
if sys.version_info >= (3, 5):
from contextlib import redirect_stdout, redirect_stderr
else:

Expand Down

0 comments on commit b3e808e

Please sign in to comment.