Skip to content

Commit a7d6b83

Browse files
authored
Do not use MetaNode. (#66)
1 parent 86701b7 commit a7d6b83

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/pytask_latex/collect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
from pytask import hookimpl
1414
from pytask import is_task_function
1515
from pytask import Mark
16-
from pytask import MetaNode
1716
from pytask import NodeInfo
1817
from pytask import NodeNotCollectedError
1918
from pytask import parse_dependencies_from_task_function
2019
from pytask import parse_products_from_task_function
2120
from pytask import PathNode
21+
from pytask import PNode
2222
from pytask import PPathNode
2323
from pytask import PTask
2424
from pytask import PTaskWithPath
@@ -295,7 +295,7 @@ def _add_latex_dependencies_retroactively(
295295

296296
def _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

0 commit comments

Comments
 (0)