Skip to content

Commit 9d47a39

Browse files
committed
Prepare release version 7.3.2
1 parent d66697e commit 9d47a39

11 files changed

+48
-8
lines changed

changelog/10169.bugfix.rst

-1
This file was deleted.

changelog/10894.bugfix.rst

-1
This file was deleted.

changelog/10987.bugfix.rst

-1
This file was deleted.

changelog/10999.bugfix.rst

-1
This file was deleted.

changelog/11028.bugfix.rst

-1
This file was deleted.

changelog/11054.bugfix.rst

-1
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.2
910
release-7.3.1
1011
release-7.3.0
1112
release-7.2.2

doc/en/announce/release-7.3.2.rst

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pytest-7.3.2
2+
=======================================
3+
4+
pytest 7.3.2 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+
* Adam J. Stewart
15+
* Alessio Izzo
16+
* Bruno Oliveira
17+
* Ran Benita
18+
19+
20+
Happy testing,
21+
The pytest Development Team

doc/en/builtin.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
207207
* caplog.record_tuples -> list of (logger_name, level, message) tuples
208208
* caplog.clear() -> clear captured records and formatted log output string
209209
210-
monkeypatch -- .../_pytest/monkeypatch.py:29
210+
monkeypatch -- .../_pytest/monkeypatch.py:30
211211
A convenient fixture for monkey-patching.
212212
213213
The fixture provides these methods to modify objects, dictionaries, or

doc/en/changelog.rst

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

2929
.. towncrier release notes start
3030
31+
pytest 7.3.2 (2023-06-10)
32+
=========================
33+
34+
Bug Fixes
35+
---------
36+
37+
- `#10169 <https://github.com/pytest-dev/pytest/issues/10169>`_: Fix bug where very long option names could cause pytest to break with ``OSError: [Errno 36] File name too long`` on some systems.
38+
39+
40+
- `#10894 <https://github.com/pytest-dev/pytest/issues/10894>`_: Support for Python 3.12 (beta at the time of writing).
41+
42+
43+
- `#10987 <https://github.com/pytest-dev/pytest/issues/10987>`_: :confval:`testpaths` is now honored to load root ``conftests``.
44+
45+
46+
- `#10999 <https://github.com/pytest-dev/pytest/issues/10999>`_: The `monkeypatch` `setitem`/`delitem` type annotations now allow `TypedDict` arguments.
47+
48+
49+
- `#11028 <https://github.com/pytest-dev/pytest/issues/11028>`_: Fixed bug in assertion rewriting where a variable assigned with the walrus operator could not be used later in a function call.
50+
51+
52+
- `#11054 <https://github.com/pytest-dev/pytest/issues/11054>`_: Fixed ``--last-failed``'s "(skipped N files)" functionality for files inside of packages (directories with `__init__.py` files).
53+
54+
3155
pytest 7.3.1 (2023-04-14)
3256
=========================
3357

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.1
25+
pytest 7.3.2
2626
2727
.. _`simpletest`:
2828

0 commit comments

Comments
 (0)