Skip to content

Commit 8235a1f

Browse files
authored
Merge pull request #55 from kushalbakshi/main
Update package requirements + format with `black`
2 parents dd3597f + 98e1f9c commit 8235a1f

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ on:
44
jobs:
55
make_github_release:
66
uses: datajoint/.github/.github/workflows/make_github_release.yaml@main
7-
pypi_release:
8-
needs: make_github_release
9-
uses: datajoint/.github/.github/workflows/pypi_release.yaml@main
10-
secrets:
11-
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
12-
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
13-
with:
14-
UPLOAD_URL: ${{needs.make_github_release.outputs.release_upload_url}}
157
mkdocs_release:
168
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
179
permissions:

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@
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.1] - 2023-10-31
6+
## [0.4.2] - 2024-01-29
7+
8+
+ Fix - `element-interface` required during package installation
9+
+ Fix - apply `black` formatting across the repository
10+
+ Update - GitHub Actions no longer release to PyPI
11+
12+
## [0.4.1] - 2024-01-22
713

814
+ Fix - `tutorial_pipeline.py` markdown and variable name typos
915

10-
## [0.4.0] - 2023-10-31
16+
## [0.4.0] - 2024-01-09
1117

1218
+ Add - DevContainer for codespaces
1319
+ Add - `tutorial_pipeline.py`

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 DataJoint
3+
Copyright (c) 2024 DataJoint
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

element_miniscope/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
"""Package metadata"""
2-
__version__ = "0.4.1"
2+
3+
__version__ = "0.4.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
"ipywidgets",
4040
"plotly",
4141
"opencv-python",
42+
"element-interface @ git+https://github.com/datajoint/element-interface.git",
4243
],
4344
extras_require={
4445
"caiman_requirements": [caiman_requirements],
4546
"caiman": ["caiman @ git+https://github.com/datajoint/CaImAn.git"],
4647
"elements": [
4748
"element-animal @ git+https://github.com/datajoint/element-animal.git",
4849
"element-event @ git+https://github.com/datajoint/element-event.git",
49-
"element-interface @ git+https://github.com/datajoint/element-interface.git",
5050
"element-lab @ git+https://github.com/datajoint/element-lab.git",
5151
"element-session @ git+https://github.com/datajoint/element-session.git",
5252
],

0 commit comments

Comments
 (0)