File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
1717- :pull: `219 ` removes some leftovers from pytest in :class: `~_pytask.mark.Mark `.
1818- :pull: `221 ` adds more test cases for parametrizations.
1919- :pull: `222 ` adds an automated Github Actions job for creating a list pytask plugins.
20+ - :pull: `225 ` fixes a circular import noticeable in plugins created by :pull: `197 `.
2021
2122
22230.1.8 - 2022-02-07
Original file line number Diff line number Diff line change 33
44from _pytask import __version__
55from _pytask .build import main
6- from _pytask .cli import cli
76from _pytask .compat import check_for_optional_program
87from _pytask .compat import import_optional_dependency
98from _pytask .config import hookimpl
3231from _pytask .outcomes import TaskOutcome
3332from _pytask .session import Session
3433
34+ # This import must come last, otherwise a circular import occurs.
35+ from _pytask .cli import cli # noreorder
36+
3537
3638__all__ = [
3739 "__version__" ,
You can’t perform that action at this time.
0 commit comments