Skip to content

Commit 536ad3a

Browse files
Merge pull request #152 from kabilar/main
Update README and Dev Container
2 parents 868d4e3 + fd6bbc8 commit 536ad3a

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM python:3.9-slim@sha256:5f0192a4f58a6ce99f732fe05e3b3d00f12ae62e183886bca3ebe3d202686c7f
22

3+
ENV PATH /usr/local/bin:$PATH
4+
ENV PYTHON_VERSION 3.9.17
5+
36
RUN \
47
adduser --system --disabled-password --shell /bin/bash vscode && \
58
# install docker

.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",
26-
"ms-toolsai.jupyter"
25+
"ms-python.python@2023.8.0",
26+
"ms-toolsai.jupyter@2023.3.1201040234",
2727
]
2828
}
2929
}

CHANGELOG.md

Lines changed: 6 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.7.7] - 2023-07-13
7+
8+
+ Add - Environment variables for the Python version in the Dev Container
9+
+ Add - Versions for the VS Code extensions in the Dev Container
10+
611
## [0.7.6] - 2023-06-30
712

813
+ Add - Null value for `package_version` in `imaging*` modules to patch bug
@@ -151,6 +156,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
151156
+ Add - `scan` and `imaging` modules
152157
+ Add - Readers for `ScanImage`, `ScanBox`, `Suite2p`, `CaImAn`
153158

159+
[0.7.7]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.7
154160
[0.7.6]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.6
155161
[0.7.5]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.5
156162
[0.7.4]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.4

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ also provides a tutorial environment and notebooks to learn the pipeline.
2626

2727
+ We have designed three variations of the pipeline to handle different use cases.
2828
Displayed above is the default `imaging` schema. Details on all of the `imaging`
29-
schemas can be found in the [Data Pipeline](https://datajoint.com/docs/elements/
30-
element-calcium-imaging/latest/pipeline/) documentation page.
29+
schemas can be found in the [Data
30+
Pipeline](https://datajoint.com/docs/elements/element-calcium-imaging/latest/pipeline/)
31+
documentation page.
3132

3233
## Getting Started
3334

element_calcium_imaging/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.7.6"
2+
__version__ = "0.7.7"

0 commit comments

Comments
 (0)