Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit e0e20aa

Browse files
committed
refactor(devcontainer): add pems_streamlit dependency
1 parent 68a1dc9 commit e0e20aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,3 @@ RUN pip install -e .[dev,test]
5454

5555
# install docs requirements
5656
RUN pip install --no-cache-dir -r docs/requirements.txt
57-
58-
# install streamlit requirements
59-
RUN pip install --no-cache-dir -r streamlit_app/requirements.txt

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ classifiers = ["Programming Language :: Python :: 3 :: Only"]
99
requires-python = ">=3.12"
1010
maintainers = [{ name = "Compiler LLC", email = "dev@compiler.la" }]
1111
# Link all the local packages so they are installed together
12-
dependencies = ["pems_web @ file:./pems_web"]
12+
dependencies = [
13+
"pems_streamlit @ file:./pems_streamlit",
14+
"pems_web @ file:./pems_web",
15+
]
1316

1417
[project.optional-dependencies]
1518
dev = [

0 commit comments

Comments
 (0)