Skip to content

Commit

Permalink
Update package requirements + format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalbakshi committed Jan 29, 2024
1 parent dd3597f commit 98e1f9c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@ on:
jobs:
make_github_release:
uses: datajoint/.github/.github/workflows/make_github_release.yaml@main
pypi_release:
needs: make_github_release
uses: datajoint/.github/.github/workflows/pypi_release.yaml@main
secrets:
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
with:
UPLOAD_URL: ${{needs.make_github_release.outputs.release_upload_url}}
mkdocs_release:
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
permissions:
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.4.1] - 2023-10-31
## [0.4.2] - 2024-01-29

+ Fix - `element-interface` required during package installation
+ Fix - apply `black` formatting across the repository
+ Update - GitHub Actions no longer release to PyPI

## [0.4.1] - 2024-01-22

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

## [0.4.0] - 2023-10-31
## [0.4.0] - 2024-01-09

+ Add - DevContainer for codespaces
+ Add - `tutorial_pipeline.py`
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 DataJoint
Copyright (c) 2024 DataJoint

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion element_miniscope/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
"""Package metadata"""
__version__ = "0.4.1"

__version__ = "0.4.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
"ipywidgets",
"plotly",
"opencv-python",
"element-interface @ git+https://github.com/datajoint/element-interface.git",
],
extras_require={
"caiman_requirements": [caiman_requirements],
"caiman": ["caiman @ git+https://github.com/datajoint/CaImAn.git"],
"elements": [
"element-animal @ git+https://github.com/datajoint/element-animal.git",
"element-event @ git+https://github.com/datajoint/element-event.git",
"element-interface @ git+https://github.com/datajoint/element-interface.git",
"element-lab @ git+https://github.com/datajoint/element-lab.git",
"element-session @ git+https://github.com/datajoint/element-session.git",
],
Expand Down

0 comments on commit 98e1f9c

Please sign in to comment.