File tree Expand file tree Collapse file tree 6 files changed +436
-353
lines changed Expand file tree Collapse file tree 6 files changed +436
-353
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3.9-slim@sha256:5f0192a4f58a6ce99f732fe05e3b3d00f12ae62e183886bca3ebe3d202686c7f
1
+ ARG PY_VER=3.11
2
+ ARG DISTRO=bullseye
3
+ FROM mcr.microsoft.com/devcontainers/python:${PY_VER}-${DISTRO}
2
4
3
- ENV PATH /usr/local/bin:$PATH
4
- ENV PYTHON_VERSION 3.9.17
5
+ # Avoid warnings by switching to noninteractive
6
+ ENV DEBIAN_FRONTEND=noninteractive
7
+
8
+ USER root
5
9
6
10
RUN \
7
- adduser --system --disabled-password --shell /bin/bash vscode && \
8
11
# install docker
9
12
apt-get update && \
10
13
apt-get install ca-certificates curl gnupg lsb-release -y && \
@@ -45,4 +48,5 @@ ENV EPHYS_ROOT_DATA_DIR /workspaces/element-array-ephys/example_data
45
48
ENV DATABASE_PREFIX neuro_
46
49
47
50
USER vscode
48
- CMD bash -c "sudo rm /var/run/docker.pid; sudo dockerd"
51
+
52
+ CMD bash -c "sudo rm /var/run/docker.pid; sudo dockerd"
Original file line number Diff line number Diff line change 22
22
},
23
23
"vscode" : {
24
24
"extensions" : [
25
- " ms-python.python@2023.8.0 " ,
26
- " ms-toolsai.jupyter@2023.3.1201040234 "
25
+ " ms-python.python@2025.6.1 " ,
26
+ " ms-toolsai.jupyter@2025.4.1 "
27
27
]
28
28
}
29
29
}
Original file line number Diff line number Diff line change 3
3
Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and
4
4
[ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
5
5
6
+ ## [ 0.4.4] - 2025-06-06
7
+
8
+ + Update - Update params in test/tutorial
9
+ + Fix - Moved KiloSort's template_features to additional_files
10
+
6
11
## [ 0.4.3] - 2025-06-03
7
12
8
13
+ Update - Use ` Spikeinterface ` official released versions (instead of install directly from source)
You can’t perform that action at this time.
0 commit comments