Skip to content

Commit bc3021c

Browse files
committed
Prepare release version 7.0.1
1 parent 591d476 commit bc3021c

10 files changed

+47
-9
lines changed

changelog/9608.bugfix.rst

-1
This file was deleted.

changelog/9610.bugfix.rst

-3
This file was deleted.

changelog/9636.bugfix.rst

-1
This file was deleted.

changelog/9642.bugfix.rst

-1
This file was deleted.

changelog/9643.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.0.1
910
release-7.0.0
1011
release-7.0.0rc1
1112
release-6.2.5

doc/en/announce/release-7.0.1.rst

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pytest-7.0.1
2+
=======================================
3+
4+
pytest 7.0.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+
* Anthony Sottile
15+
* Bruno Oliveira
16+
* Ran Benita
17+
18+
19+
Happy testing,
20+
The pytest Development Team

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.0.1 (2022-02-11)
32+
=========================
33+
34+
Bug Fixes
35+
---------
36+
37+
- `#9608 <https://github.com/pytest-dev/pytest/issues/9608>`_: Fix invalid importing of ``importlib.readers`` in Python 3.9.
38+
39+
40+
- `#9610 <https://github.com/pytest-dev/pytest/issues/9610>`_: Restore `UnitTestFunction.obj` to return unbound rather than bound method.
41+
Fixes a crash during a failed teardown in unittest TestCases with non-default `__init__`.
42+
Regressed in pytest 7.0.0.
43+
44+
45+
- `#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.
46+
47+
48+
- `#9642 <https://github.com/pytest-dev/pytest/issues/9642>`_: Fix running tests by id with ``::`` in the parametrize portion.
49+
50+
51+
- `#9643 <https://github.com/pytest-dev/pytest/issues/9643>`_: Delay issuing a :class:`~pytest.PytestWarning` about diamond inheritance involving :class:`~pytest.Item` and
52+
:class:`~pytest.Collector` so it can be filtered using :ref:`standard warning filters <warnings>`.
53+
54+
3155
pytest 7.0.0 (2022-02-03)
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.0.0
25+
pytest 7.0.1
2626
2727
.. _`simpletest`:
2828

extra/setup-py.test/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import sys
2+
23
from distutils.core import setup
34

45
if __name__ == "__main__":

0 commit comments

Comments
 (0)