Skip to content

Commit dab1992

Browse files
committedApr 14, 2023·
Prepare release version 7.3.1
1 parent c3d9dac commit dab1992

8 files changed

+43
-6
lines changed
 

‎changelog/10875.improvement.rst

-1
This file was deleted.

‎changelog/10890.improvement.rst

-1
This file was deleted.

‎changelog/10896.bugfix.rst

-1
This file was deleted.

‎changelog/10903.bugfix.rst

-2
This file was deleted.

‎doc/en/announce/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-7.3.1
910
release-7.3.0
1011
release-7.2.2
1112
release-7.2.1

‎doc/en/announce/release-7.3.1.rst

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pytest-7.3.1
2+
=======================================
3+
4+
pytest 7.3.1 has just been released to PyPI.
5+
6+
This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+
pip install --upgrade pytest
9+
10+
The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.
11+
12+
Thanks to all of the contributors to this release:
13+
14+
* Ran Benita
15+
16+
17+
Happy testing,
18+
The pytest Development Team

‎doc/en/changelog.rst

+23
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,29 @@ with advance notice in the **Deprecations** section of releases.
2828

2929
.. towncrier release notes start
3030
31+
pytest 7.3.1 (2023-04-14)
32+
=========================
33+
34+
Improvements
35+
------------
36+
37+
- `#10875 <https://github.com/pytest-dev/pytest/issues/10875>`_: Python 3.12 support: fixed ``RuntimeError: TestResult has no addDuration method`` when running ``unittest`` tests.
38+
39+
40+
- `#10890 <https://github.com/pytest-dev/pytest/issues/10890>`_: Python 3.12 support: fixed ``shutil.rmtree(onerror=...)`` deprecation warning when using :fixture:`tmp_path`.
41+
42+
43+
44+
Bug Fixes
45+
---------
46+
47+
- `#10896 <https://github.com/pytest-dev/pytest/issues/10896>`_: Fixed performance regression related to :fixture:`tmp_path` and the new :confval:`tmp_path_retention_policy` option.
48+
49+
50+
- `#10903 <https://github.com/pytest-dev/pytest/issues/10903>`_: Fix crash ``INTERNALERROR IndexError: list index out of range`` which happens when displaying an exception where all entries are hidden.
51+
This reverts the change "Correctly handle ``__tracebackhide__`` for chained exceptions." introduced in version 7.3.0.
52+
53+
3154
pytest 7.3.0 (2023-04-08)
3255
=========================
3356

‎doc/en/getting-started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Install ``pytest``
2222
.. code-block:: bash
2323
2424
$ pytest --version
25-
pytest 7.3.0
25+
pytest 7.3.1
2626
2727
.. _`simpletest`:
2828

0 commit comments

Comments
 (0)
Please sign in to comment.