From 98e1f9cb6594b9e957341341b30aa893afac88dc Mon Sep 17 00:00:00 2001 From: kushalbakshi Date: Mon, 29 Jan 2024 17:33:04 -0600 Subject: [PATCH] Update package requirements + format with `black` --- .github/workflows/release.yaml | 8 -------- CHANGELOG.md | 10 ++++++++-- LICENSE | 2 +- element_miniscope/version.py | 3 ++- setup.py | 2 +- 5 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4a5f2cb..2eedb0e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 18bd201..31de2a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/LICENSE b/LICENSE index 386e298..6872305 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/element_miniscope/version.py b/element_miniscope/version.py index 843dc5d..2f158f7 100644 --- a/element_miniscope/version.py +++ b/element_miniscope/version.py @@ -1,2 +1,3 @@ """Package metadata""" -__version__ = "0.4.1" + +__version__ = "0.4.2" diff --git a/setup.py b/setup.py index 18f6d4d..6a27897 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,7 @@ "ipywidgets", "plotly", "opencv-python", + "element-interface @ git+https://github.com/datajoint/element-interface.git", ], extras_require={ "caiman_requirements": [caiman_requirements], @@ -46,7 +47,6 @@ "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", ],