Skip to content

Commit 44548d3

Browse files
Merge pull request #223 from ttngu207/main
Update python version, update devcontainer
2 parents 297e261 + d5eb76f commit 44548d3

File tree

6 files changed

+436
-353
lines changed

6 files changed

+436
-353
lines changed

.devcontainer/Dockerfile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
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}
24

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
59

610
RUN \
7-
adduser --system --disabled-password --shell /bin/bash vscode && \
811
# install docker
912
apt-get update && \
1013
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
4548
ENV DATABASE_PREFIX neuro_
4649

4750
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"

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
},
2323
"vscode": {
2424
"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"
2727
]
2828
}
2929
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

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+
611
## [0.4.3] - 2025-06-03
712

813
+ Update - Use `Spikeinterface` official released versions (instead of install directly from source)

0 commit comments

Comments
 (0)