You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously new-style wrappers were implied by the function being a
generator, however that broke a use case of a non-wrapper impl being a
generator as a way to return an Iterator result. This is legitimate, and
used at least by conda (see #403).
Therefore, change to require an explicit `wrapper=True`. Also adds a
test for the iterator-returning case.
Fix#405.
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,9 @@ pluggy 1.1.0 (YANKED)
26
26
27
27
.. note::
28
28
29
-
This release was yanked because unfortunately the new-style hook wrappers broke some downstream projects. See `#403 <https://github.com/pytest-dev/pluggy/issues/403>`__ for more information.
29
+
This release was yanked because unfortunately the implicit new-style hook wrappers broke some downstream projects.
30
+
See `#403 <https://github.com/pytest-dev/pluggy/issues/403>`__ for more information.
0 commit comments