Skip to content

Commit 51b9bdc

Browse files
authored
Merge pull request #83 from kushalbakshi/main
Fix DANDI Upload URL
2 parents 23c8611 + 850917f commit 51b9bdc

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.5.4] - 2023-05-14
7+
8+
+ Fix - DANDI URL for uploads where `staging=False`.
9+
610
## [0.5.3] - 2023-05-11
711

812
+ Fix - `.ipynb` dark mode output for all notebooks.
@@ -66,6 +70,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
6670

6771
+ Add - Readers for: `ScanImage`, `Suite2p`, `CaImAn`.
6872

73+
[0.5.4]: https://github.com/datajoint/element-interface/releases/tag/0.5.4
6974
[0.5.3]: https://github.com/datajoint/element-interface/releases/tag/0.5.3
7075
[0.5.2]: https://github.com/datajoint/element-interface/releases/tag/0.5.2
7176
[0.5.1]: https://github.com/datajoint/element-interface/releases/tag/0.5.1

element_interface/dandi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def upload_to_dandi(
3939
download(
4040
f"https://gui-staging.dandiarchive.org/#/dandiset/{dandiset_id}"
4141
if staging
42-
else dandiset_id,
42+
else f"https://dandiarchive.org/dandiset/{dandiset_id}",
4343
output_dir=working_directory,
4444
)
4545

element_interface/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package metadata"""
22

3-
__version__ = "0.5.3"
3+
__version__ = "0.5.4"

0 commit comments

Comments
 (0)