Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit 0878c2b

Browse files
Merge pull request #101 from kabilar/devcontainer
Add Docker image ID
2 parents 9d92618 + 59d076c commit 0878c2b

File tree

7 files changed

+791
-140
lines changed

7 files changed

+791
-140
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-slim
1+
FROM python:3.9-slim@sha256:5f0192a4f58a6ce99f732fe05e3b3d00f12ae62e183886bca3ebe3d202686c7f
22

33
RUN \
44
adduser --system --disabled-password --shell /bin/bash vscode && \

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"customizations": {
2323
"vscode": {
2424
"extensions": [
25-
"ms-python.python"
25+
"ms-python.python",
26+
"ms-toolsai.jupyter"
2627
]
2728
}
2829
}

.devcontainer/local/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"customizations": {
2323
"vscode": {
2424
"extensions": [
25-
"ms-python.python"
25+
"ms-python.python",
26+
"ms-toolsai.jupyter"
2627
]
2728
}
2829
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
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.3.3] - 2023-06-29
7+
8+
+ Add - Docker image ID
9+
+ Add - VS Code extensions
10+
+ Update - `element-array-ephys` version
11+
+ Update - Tutorial notebook to work around bug
12+
613
## [0.3.2] - 2023-04-14
714

815
+ Add - `quality_metrics.ipynb` for visualizing quality metrics.
@@ -93,6 +100,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
93100

94101
+ Add - Version
95102

103+
[0.3.3]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.3
96104
[0.3.2]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.2
97105
[0.3.1]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.1
98106
[0.3.0]: https://github.com/datajoint/workflow-array-ephys/releases/tag/0.3.0

notebooks/tutorial.ipynb

Lines changed: 776 additions & 135 deletions
Large diffs are not rendered by default.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
datajoint>=0.13.0
22
element-animal>=0.1.5
3-
element-array-ephys>=0.2.7
3+
element-array-ephys>=0.2.11
44
element-electrode-localization>=0.1.2
55
element-event>=0.1.2
66
element-interface>=0.5.0

workflow_array_ephys/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Package metadata
33
Update the Docker image tag in `docker-compose.yaml` to match
44
"""
5-
__version__ = "0.3.2"
5+
__version__ = "0.3.3"

0 commit comments

Comments
 (0)