Skip to content

Commit 60ca837

Browse files
committed
docs: change references to 6.3 -> 7.0
The plans have changed, next version will be 7.0 not 6.3.
1 parent 755ce9b commit 60ca837

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/en/deprecations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Implement the :func:`pytest_load_initial_conftests <_pytest.hookspec.pytest_load
6363
Diamond inheritance between :class:`pytest.File` and :class:`pytest.Item`
6464
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6565

66-
.. deprecated:: 6.3
66+
.. deprecated:: 7.0
6767

6868
Inheriting from both Item and file at once has never been supported officially,
6969
however some plugins providing linting/code analysis have been using this as a hack.
@@ -90,7 +90,7 @@ scheduled for removal in pytest 7 (deprecated since pytest 2.4.0):
9090
Raising ``unittest.SkipTest`` during collection
9191
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9292

93-
.. deprecated:: 6.3
93+
.. deprecated:: 7.0
9494

9595
Raising :class:`unittest.SkipTest` to skip collection of tests during the
9696
pytest collection phase is deprecated. Use :func:`pytest.skip` instead.

src/_pytest/cacheprovider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def mkdir(self, name: str) -> Path:
128128
it to manage files to e.g. store/retrieve database dumps across test
129129
sessions.
130130
131-
.. versionadded:: 6.3
131+
.. versionadded:: 7.0
132132
133133
:param name:
134134
Must be a string not containing a ``/`` separator.

src/_pytest/config/argparsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def addini(
185185
* ``paths``: a list of :class:`pathlib.Path`, separated as in a shell
186186
* ``pathlist``: a list of ``py.path``, separated as in a shell
187187
188-
.. versionadded:: 6.3
188+
.. versionadded:: 7.0
189189
The ``paths`` variable type.
190190
191191
Defaults to ``string`` if ``None`` or not passed.

src/_pytest/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ def __repr__(self) -> str:
500500
def startpath(self) -> Path:
501501
"""The path from which pytest was invoked.
502502
503-
.. versionadded:: 6.3.0
503+
.. versionadded:: 7.0.0
504504
"""
505505
return self.config.invocation_params.dir
506506

0 commit comments

Comments
 (0)