Open
Conversation
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.13.1->==1.0.0Release Notes
pytest-dev/pluggy
v1.0.0Compare Source
=========================
Deprecations and Removals
#​116 <https://github.com/pytest-dev/pluggy/issues/116>_: Remove deprecatedimplprefixsupport.Decorate hook implementations using an instance of HookimplMarker instead.
The deprecation was announced in release
0.7.0.#​120 <https://github.com/pytest-dev/pluggy/issues/120>_: Remove the deprecatedprocargument tocall_historic.Use
result_callbackinstead, which has the same behavior.The deprecation was announced in release
0.7.0.#​265 <https://github.com/pytest-dev/pluggy/issues/265>_: Remove the_Result.resultproperty. Use_Result.get_result()instead.Note that unlike
result,get_result()raises the exception if the hook raised.The deprecation was announced in release
0.6.0.#​267 <https://github.com/pytest-dev/pluggy/issues/267>_: Remove official support for Python 3.4.#​272 <https://github.com/pytest-dev/pluggy/issues/272>_: Dropped support for Python 2.Continue to use pluggy 0.13.x for Python 2 support.
#​308 <https://github.com/pytest-dev/pluggy/issues/308>_: Remove official support for Python 3.5.#​313 <https://github.com/pytest-dev/pluggy/issues/313>_: The internalpluggy.callers,pluggy.managerandpluggy.hooksare now explicitly marked private by a_prefix (e.g.pluggy._callers).Only API exported by the top-level
pluggymodule is considered public.#​59 <https://github.com/pytest-dev/pluggy/issues/59>_: Remove legacy__multicall__recursive hook calling system.The deprecation was announced in release
0.5.0.Features
#​282 <https://github.com/pytest-dev/pluggy/issues/282>_: When registering a hookimpl which is declared ashookwrapper=Truebut whosefunction is not a generator function, a
PluggyValidationErrorexception isnow raised.
Previously this problem would cause an error only later, when calling the hook.
In the unlikely case that you have a hookwrapper that returns a generator
instead of yielding directly, for example:
.. code-block:: python
change it to use
yield frominstead:.. code-block:: python
#​309 <https://github.com/pytest-dev/pluggy/issues/309>_: Add official support for Python 3.9.#​251 <https://github.com/pytest-dev/pluggy/issues/251>_: Addspecnameoption to@hookimpl. Ifspecnameis provided, it will be usedinstead of the function name when matching this hook implementation to a hook specification during registration (allowing a plugin to register
a hook implementation that was not named the same thing as the corresponding
@hookspec).Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.