Skip to content

Commit

Permalink
Prepare release version 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pytestbot committed Feb 11, 2022
1 parent 591d476 commit bc3021c
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 9 deletions.
1 change: 0 additions & 1 deletion changelog/9608.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog/9610.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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


release-7.0.1
release-7.0.0
release-7.0.0rc1
release-6.2.5
Expand Down
20 changes: 20 additions & 0 deletions doc/en/announce/release-7.0.1.rst
@@ -0,0 +1,20 @@
pytest-7.0.1
=======================================

pytest 7.0.1 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:

* Anthony Sottile
* Bruno Oliveira
* Ran Benita


Happy testing,
The pytest Development Team
24 changes: 24 additions & 0 deletions doc/en/changelog.rst
Expand Up @@ -28,6 +28,30 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start
pytest 7.0.1 (2022-02-11)
=========================

Bug Fixes
---------

- `#9608 <https://github.com/pytest-dev/pytest/issues/9608>`_: Fix invalid importing of ``importlib.readers`` in Python 3.9.


- `#9610 <https://github.com/pytest-dev/pytest/issues/9610>`_: Restore `UnitTestFunction.obj` to return unbound rather than bound method.
Fixes a crash during a failed teardown in unittest TestCases with non-default `__init__`.
Regressed in pytest 7.0.0.


- `#9636 <https://github.com/pytest-dev/pytest/issues/9636>`_: The ``pythonpath`` plugin was renamed to ``python_path``. This avoids a conflict with the ``pytest-pythonpath`` plugin.


- `#9642 <https://github.com/pytest-dev/pytest/issues/9642>`_: Fix running tests by id with ``::`` in the parametrize portion.


- `#9643 <https://github.com/pytest-dev/pytest/issues/9643>`_: Delay issuing a :class:`~pytest.PytestWarning` about diamond inheritance involving :class:`~pytest.Item` and
:class:`~pytest.Collector` so it can be filtered using :ref:`standard warning filters <warnings>`.


pytest 7.0.0 (2022-02-03)
=========================

Expand Down
2 changes: 1 addition & 1 deletion doc/en/getting-started.rst
Expand Up @@ -22,7 +22,7 @@ Install ``pytest``
.. code-block:: bash
$ pytest --version
pytest 7.0.0
pytest 7.0.1
.. _`simpletest`:

Expand Down
1 change: 1 addition & 0 deletions extra/setup-py.test/setup.py
@@ -1,4 +1,5 @@
import sys

from distutils.core import setup

if __name__ == "__main__":
Expand Down

0 comments on commit bc3021c

Please sign in to comment.