File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ releases are available on [Anaconda.org](https://anaconda.org/conda-forge/pytask
77## 0.4.2 - 2023-xx-xx
88
99- {pull}` 65 ` simplifies dependency management.
10+ - {pull}` 66 ` removes using ` MetaNode ` .
1011
11- ## 0.4.1 - 2023-xx-xx
12+ ## 0.4.1 - 2023-10-12
1213
1314- {pull}` 63 ` improves the collection of dependencies.
1415
Original file line number Diff line number Diff line change 1313from pytask import hookimpl
1414from pytask import is_task_function
1515from pytask import Mark
16- from pytask import MetaNode
1716from pytask import NodeInfo
1817from pytask import NodeNotCollectedError
1918from pytask import parse_dependencies_from_task_function
2019from pytask import parse_products_from_task_function
2120from pytask import PathNode
21+ from pytask import PNode
2222from pytask import PPathNode
2323from pytask import PTask
2424from pytask import PTaskWithPath
@@ -295,7 +295,7 @@ def _add_latex_dependencies_retroactively(
295295
296296def _collect_node (
297297 session : Session , path : Path , node_info : NodeInfo
298- ) -> dict [str , MetaNode ]:
298+ ) -> dict [str , PNode ]:
299299 """Collect nodes for a task.
300300
301301 Raises
You can’t perform that action at this time.
0 commit comments