File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,19 @@ install: install-python ## Install core dependencies
3737 @echo " 🔧 Installing pre-commit hooks"
3838 @$(UV ) run pre-commit install
3939 @echo " "
40- @echo " 🐳 Building nebula-frontend docker image. Do you want to continue? (y/n)"
41- @read ans && [ $$ {ans:-N} = y ] || { echo " Build cancelled." ; exit 1; }
42- @docker build -t nebula-frontend -f nebula/frontend/Dockerfile .
40+ @echo " 🐳 Building nebula-frontend docker image. Do you want to continue (overrides existing image)? (y/n)"
41+ @read ans; if [ " $$ {ans:-N}" = y ]; then \
42+ docker build -t nebula-frontend -f nebula/frontend/Dockerfile . ; \
43+ else \
44+ echo " Skipping nebula-frontend docker build." ; \
45+ fi
4346 @echo " "
44- @echo " 🐳 Building nebula-core docker image. Do you want to continue? (y/n)"
45- @read ans && [ $$ {ans:-N} = y ] || { echo " Build cancelled." ; exit 1; }
46- @docker build -t nebula-core .
47+ @echo " 🐳 Building nebula-core docker image. Do you want to continue? (overrides existing image)? (y/n)"
48+ @read ans; if [ " $$ {ans:-N}" = y ]; then \
49+ docker build -t nebula-core . ; \
50+ else \
51+ echo " Skipping nebula-core docker build." ; \
52+ fi
4753 @echo " "
4854 @$(MAKE ) shell
4955
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ dependencies = [
2828 " mypy<2.0.0,>=1.13.0" ,
2929 " pre-commit<5.0.0,>=4.0.1" ,
3030 " ruff<1.0.0,>=0.7.2" ,
31+ " tensorboard-reducer==0.3.1" ,
3132]
3233
3334classifiers = [
@@ -124,7 +125,6 @@ frontend = [
124125 " setuptools==74.1.2" ,
125126 " tensorboard==2.17.1" ,
126127 " tensorboardx==2.6.2.2" ,
127- " tensorboard-reducer==0.3.1" ,
128128 " torch==2.4.1" ,
129129 " uvicorn==0.30.6" ,
130130 " web3==6.20.0" ,
You can’t perform that action at this time.
0 commit comments