Skip to content

Commit

Permalink
Prepare release version 7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pytestbot committed Jun 10, 2023
1 parent d66697e commit 9d47a39
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 8 deletions.
1 change: 0 additions & 1 deletion changelog/10169.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-7.3.2
release-7.3.1
release-7.3.0
release-7.2.2
Expand Down
21 changes: 21 additions & 0 deletions doc/en/announce/release-7.3.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pytest-7.3.2
=======================================

pytest 7.3.2 has just been released to PyPI.

This is a bug-fix release, being a drop-in replacement. To upgrade::

pip install --upgrade pytest

The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.

Thanks to all of the contributors to this release:

* Adam J. Stewart
* Alessio Izzo
* Bruno Oliveira
* Ran Benita


Happy testing,
The pytest Development Team
2 changes: 1 addition & 1 deletion doc/en/builtin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
* caplog.record_tuples -> list of (logger_name, level, message) tuples
* caplog.clear() -> clear captured records and formatted log output string
monkeypatch -- .../_pytest/monkeypatch.py:29
monkeypatch -- .../_pytest/monkeypatch.py:30
A convenient fixture for monkey-patching.
The fixture provides these methods to modify objects, dictionaries, or
Expand Down
24 changes: 24 additions & 0 deletions doc/en/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,30 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start
pytest 7.3.2 (2023-06-10)
=========================

Bug Fixes
---------

- `#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.


- `#10894 <https://github.com/pytest-dev/pytest/issues/10894>`_: Support for Python 3.12 (beta at the time of writing).


- `#10987 <https://github.com/pytest-dev/pytest/issues/10987>`_: :confval:`testpaths` is now honored to load root ``conftests``.


- `#10999 <https://github.com/pytest-dev/pytest/issues/10999>`_: The `monkeypatch` `setitem`/`delitem` type annotations now allow `TypedDict` arguments.


- `#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.


- `#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).


pytest 7.3.1 (2023-04-14)
=========================

Expand Down
2 changes: 1 addition & 1 deletion doc/en/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Install ``pytest``
.. code-block:: bash
$ pytest --version
pytest 7.3.1
pytest 7.3.2
.. _`simpletest`:

Expand Down

0 comments on commit 9d47a39

Please sign in to comment.