Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim
FROM python:3.7-slim@sha256:85ddc7b500c5e33a6eec44adbde8347a8a07714f03fc638f2cf4b13837bac601

RUN \
adduser --system --disabled-password --shell /bin/bash vscode && \
Expand Down
37 changes: 22 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
# Changelog

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

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

## [0.0.0b1] - 2021-06-11
### Fixed
+ Notebook structure, polish
## 0.1.0 - 2023-02-27

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

## [0.0.0a] - 2020-04-13
### Added
+ Major initial commits
## 0.0.0b3

+ Update - Calcium Imaging .py files to mirror Electrophysiology

## 0.0.0b2 - 2022-05-07

+ Add - Folder structure to to imply NB order
+ Update - ERD -> Diagram
+ Change - Working directory to /home/notebooks
+ Change - Per above, move data to /home/notebooks, collapse modalities

## 0.0.0b1 - 2021-06-11

+ Fix - Notebook structure, polish

## 0.0.0a - 2020-04-13

+ Add - Major initial commits
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
DataJoint interactive tutorials with examples from electrophysiology and calcium-imaging
"""

with open(path.join(here, 'requirements.txt')) as f:
with open(path.join(here, "requirements.txt")) as f:
requirements = f.read().splitlines()

setup(
name='datajoint-tutorials',
version="0.1.0",
name="datajoint-tutorials",
version="0.1.1",
description="DataJoint interactive tutorials",
long_description=long_description,
author='DataJoint',
author_email='info@datajoint.com',
license='MIT',
url='https://github.com/datajoint/datajoint-tutorials',
keywords='neuroscience datajoint',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
author="DataJoint",
author_email="support@datajoint.com",
license="MIT",
url="https://github.com/datajoint/datajoint-tutorials",
keywords="neuroscience datajoint",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
install_requires=requirements,
)
)