Skip to content

Commit c38d8ce

Browse files
authored
Update Dash release candidate (#1089)
* Update Dash release candidate * Update keyword only modification
1 parent e15d80c commit c38d8ce

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ _move-generated-files:
140140
new_file = file_.parent / "_components" / filename
141141
file_.rename(new_file)
142142
# enforce keyword arguments only after the id argument
143-
id_pattern = " id: typing.Optional[str] = None,\n"
143+
id_pattern = " id: typing.Optional[typing.Union[str, dict]] = None,\n"
144144
new_file.write_text(
145145
new_file.read_text().replace(id_pattern, f"{id_pattern}{8 * ' '}*,\n")
146146
)

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ authors = [
1414
]
1515
maintainers = [{ name = "Tom Begley", email = "[email protected]" }]
1616
requires-python = ">=3.9, <4"
17-
dependencies = ["dash==3.0.0rc1"]
17+
dependencies = [
18+
"dash==3.0.0rc3",
19+
]
1820
classifiers = [
1921
"Framework :: Dash",
2022
"License :: OSI Approved :: Apache Software License",

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)