File tree 2 files changed +4
-1
lines changed
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
17
17
- :pull: `219 ` removes some leftovers from pytest in :class: `~_pytask.mark.Mark `.
18
18
- :pull: `221 ` adds more test cases for parametrizations.
19
19
- :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 `.
20
21
21
22
22
23
0.1.8 - 2022-02-07
Original file line number Diff line number Diff line change 3
3
4
4
from _pytask import __version__
5
5
from _pytask .build import main
6
- from _pytask .cli import cli
7
6
from _pytask .compat import check_for_optional_program
8
7
from _pytask .compat import import_optional_dependency
9
8
from _pytask .config import hookimpl
32
31
from _pytask .outcomes import TaskOutcome
33
32
from _pytask .session import Session
34
33
34
+ # This import must come last, otherwise a circular import occurs.
35
+ from _pytask .cli import cli # noreorder
36
+
35
37
36
38
__all__ = [
37
39
"__version__" ,
You can’t perform that action at this time.
0 commit comments