Skip to content

Commit 269c02d

Browse files
authored
fix(type): bump packages (#232)
* chore: bump packages * fix(type): mypy issue
1 parent 386bd17 commit 269c02d

File tree

3 files changed

+1019
-992
lines changed

3 files changed

+1019
-992
lines changed

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ authors = [
88
]
99
requires-python = ">=3.10"
1010
dependencies = [
11-
"click-plugins>=1.1.1",
12-
"click<=8.1.3",
1311
"pydantic>=2.10.3",
1412
"ruamel-yaml>=0.18.6",
1513
"stevedore>=5.4.0",
1614
"rich>=13.9.4",
1715
"dill>=0.3.9",
1816
"setuptools>=75.6.0",
1917
"python-dotenv>=1.0.1",
20-
"typer>=0.15.1",
18+
"typer>=0.17.3",
2119
"cloudpathlib>=0.20.0",
2220
]
2321

runnable/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def create_graph(dag_config: Dict[str, Any], internal_branch_name: str = "") ->
329329
Returns:
330330
Graph: The created graph object
331331
"""
332-
description: str = dag_config.get("description", None)
332+
description: str | None = dag_config.get("description", None)
333333
start_at: str = cast(
334334
str, dag_config.get("start_at")
335335
) # Let the start_at be relative to the graph

0 commit comments

Comments
 (0)