Skip to content

Commit a3c3d77

Browse files
authored
Merge pull request #25 from kabilar/docker
Add Docker image hash
2 parents 9c4c6cc + 78f7ff4 commit a3c3d77

File tree

3 files changed

+33
-26
lines changed

3 files changed

+33
-26
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7-slim
1+
FROM python:3.7-slim@sha256:85ddc7b500c5e33a6eec44adbde8347a8a07714f03fc638f2cf4b13837bac601
22

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

CHANGELOG.md

+22-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
# Changelog
22

3-
## [unreleased]
4-
### Needs
5-
+ Calcium Imaging .py files to mirror Electrophysiology
3+
## 0.1.1 - 2023-06-19
64

7-
## [0.0.0b2] - 2022-05-07
8-
### Added
9-
+ Folder structure to to imply NB order
10-
+ ERD->Diagram
11-
+ Change working directory to /home/notebooks
12-
+ Per above, move data to /home/notebooks, collapse modalities
5+
+ Add - Docker image hash
136

14-
## [0.0.0b1] - 2021-06-11
15-
### Fixed
16-
+ Notebook structure, polish
7+
## 0.1.0 - 2023-02-27
178

9+
+ Update - Stable release before rework to incorporate Dev Container and GitHub Codespace
1810

19-
## [0.0.0a] - 2020-04-13
20-
### Added
21-
+ Major initial commits
11+
## 0.0.0b3
12+
13+
+ Update - Calcium Imaging .py files to mirror Electrophysiology
14+
15+
## 0.0.0b2 - 2022-05-07
16+
17+
+ Add - Folder structure to to imply NB order
18+
+ Update - ERD -> Diagram
19+
+ Change - Working directory to /home/notebooks
20+
+ Change - Per above, move data to /home/notebooks, collapse modalities
21+
22+
## 0.0.0b1 - 2021-06-11
23+
24+
+ Fix - Notebook structure, polish
25+
26+
## 0.0.0a - 2020-04-13
27+
28+
+ Add - Major initial commits

setup.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
DataJoint interactive tutorials with examples from electrophysiology and calcium-imaging
88
"""
99

10-
with open(path.join(here, 'requirements.txt')) as f:
10+
with open(path.join(here, "requirements.txt")) as f:
1111
requirements = f.read().splitlines()
1212

1313
setup(
14-
name='datajoint-tutorials',
15-
version="0.1.0",
14+
name="datajoint-tutorials",
15+
version="0.1.1",
1616
description="DataJoint interactive tutorials",
1717
long_description=long_description,
18-
author='DataJoint',
19-
author_email='info@datajoint.com',
20-
license='MIT',
21-
url='https://github.com/datajoint/datajoint-tutorials',
22-
keywords='neuroscience datajoint',
23-
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
18+
author="DataJoint",
19+
author_email="support@datajoint.com",
20+
license="MIT",
21+
url="https://github.com/datajoint/datajoint-tutorials",
22+
keywords="neuroscience datajoint",
23+
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
2424
install_requires=requirements,
25-
)
25+
)

0 commit comments

Comments
 (0)