Skip to content

Commit 3fb4e40

Browse files
committed
fix numcodecs version and remove react extension
1 parent e62a2f9 commit 3fb4e40

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ RUN pip install wavpack-numcodecs
2525
# Install spikeinterface-gui from source
2626
RUN git clone https://github.com/alejoe91/spikeinterface-gui.git && \
2727
cd spikeinterface-gui && \
28-
git checkout d68fa5edb89ba776519abde361f549a096e98fe4 && \
28+
git checkout 207046cc7bcf0fd16ae1441f7fae942ee8d8d5d1 && \
2929
pip install . --no-cache-dir && cd ..
3030

3131

3232
EXPOSE 8000
33-
ENTRYPOINT ["sh", "-c", "panel serve src/aind_ephys_portal/ephys_portal_app.py src/aind_ephys_portal/ephys_gui_app.py src/aind_ephys_portal/test_react.py --static-dirs images=src/aind_ephys_portal/images --address 0.0.0.0 --port 8000 --allow-websocket-origin ${ALLOW_WEBSOCKET_ORIGIN} --keep-alive 10000 --index ephys_portal_app.py --warm"]
33+
ENTRYPOINT ["sh", "-c", "panel serve src/aind_ephys_portal/ephys_portal_app.py src/aind_ephys_portal/ephys_gui_app.py --static-dirs images=src/aind_ephys_portal/images --address 0.0.0.0 --port 8000 --allow-websocket-origin ${ALLOW_WEBSOCKET_ORIGIN} --keep-alive 10000 --index ephys_portal_app.py --warm"]

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies = [
2121
"numpy>=1.20.0",
2222
"boto3",
2323
"s3fs>=2025.2.0",
24+
"numcodecs<0.16.0",
2425
"spikeinterface-gui"
2526
]
2627

src/aind_ephys_portal/ephys_gui_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import panel as pn
88

9-
pn.extension("tabulator", "gridstack", "react")
9+
pn.extension("tabulator", "gridstack")
1010

1111
from spikeinterface_gui.utils_panel import KeyboardShortcuts
1212

src/aind_ephys_portal/ephys_portal_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import panel as pn
1111

12-
pn.extension("tabulator", "gridstack", "react")
12+
pn.extension("tabulator", "gridstack")
1313

1414
format_css_background()
1515

src/aind_ephys_portal/panel/ephys_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import panel as pn
66

7-
pn.extension("tabulator", "gridstack", "react")
7+
pn.extension("tabulator", "gridstack")
88

99
from aind_ephys_portal.docdb.database import get_name_from_id, get_asset_by_name, get_raw_asset_by_name
1010

0 commit comments

Comments
 (0)