Skip to content

Commit 1b8f302

Browse files
committed
release 3.14.3
Signed-off-by: Bernat Gabor <[email protected]>
1 parent 0c591b9 commit 1b8f302

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
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.14.3 (2019-12-27)
15+
--------------------
16+
17+
Bugfixes
18+
^^^^^^^^
19+
20+
- Relax importlib requirement to allow either version 0 or 1 - by :user:`chyzzqo2`
21+
`#1476 <https://github.com/tox-dev/tox/issues/1476>`_
22+
23+
Miscellaneous
24+
^^^^^^^^^^^^^
25+
26+
- Clarify legacy setup.py error message: python projects should commit to a strong consistency of message regarding packaging. We no-longer tell people to add a setup.py to their already configured pep-517 project, otherwise it could imply that pyproject.toml isn't as well supported and recommended as it truly is - by :user:`graingert`
27+
`#1478 <https://github.com/tox-dev/tox/issues/1478>`_
28+
1429
v3.14.2 (2019-12-02)
1530
--------------------
1631

docs/changelog/1478.misc.rst

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

tests/integration/test_package_int.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ def test_package_flit(initproj, cmd):
7878

7979
@pytest.mark.network
8080
@pytest.mark.skipif(sys.version_info < (3, 0), reason="poetry is Python 3 only")
81-
@pytest.mark.xfail(
82-
os.name == "nt", reason="https://github.com/tobgu/pyrsistent/issues/88 breaks poetry install",
83-
)
8481
def test_package_poetry(initproj, cmd):
8582
initproj(
8683
"magic-0.1",

tests/unit/test_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_invocation_error(exit_code, os_name, mocker, monkeypatch):
8585
assert call_args == mocker.call("InvocationError", "<command>", exit_code)
8686
if exit_code is None:
8787
assert "(exited with code" not in result
88-
elif exit_code is -15:
88+
elif exit_code == -15:
8989
assert "(exited with code -15 (SIGTERM))" in result
9090
else:
9191
assert "(exited with code %d)" % exit_code in result

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ commands = pre-commit run --all-files --show-diff-on-failure {posargs}
7575
description = [run locally after tests]: combine coverage data and create report;
7676
generates a diff coverage against origin/master (can be changed by setting DIFF_AGAINST env var)
7777
deps = {[testenv]deps}
78-
coverage >= 4.4.1, < 5
78+
coverage >= 5.0.1, < 6
7979
diff_cover
8080
skip_install = True
8181
passenv = {[testenv]passenv}

0 commit comments

Comments
 (0)