Skip to content

Commit e6a92a0

Browse files
committed
Fix pyproject.toml optional-dependencies syntax
The streamlit optional dependency was in a nested TOML table instead of an array under [project.optional-dependencies], causing setuptools to reject the configuration during Docker build.
1 parent 0979394 commit e6a92a0

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,9 @@ dependencies = [
1111
"dash>=2.15",
1212
]
1313

14-
[project.optional-dependencies.streamlit]
15-
streamlit = ["streamlit>=1.33"]
16-
1714
[project.optional-dependencies]
18-
dev = [
19-
"pytest>=7.0",
20-
]
15+
streamlit = ["streamlit>=1.33"]
16+
dev = ["pytest>=7.0"]
2117

2218
[build-system]
2319
requires = ["setuptools>=68.0"]

0 commit comments

Comments
 (0)