-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump gwcs to first supported version with inverse support * add changelog * Also need to bump other things * Remove compatibility code for old asdf * fix syntax in old changelog * More sunpy issues * things that go bump in the night * Don't write temp file to repo dir * Add whatsnew * Let's see if I can actually fix this * Explicitly allow for no-slicing operations. This supports `np.s_[None]` `...` `np.s_[...]` etc * raise in plot if slices results in a dataset which is not 2D * doc fixes * Add test coverage for new error raised by bad `.plot` slices * Need to mark as using remote data? * NDCube fail --------- Co-authored-by: Arthur Eigenbrot <[email protected]> Co-authored-by: Drew Leonard <[email protected]>
- Loading branch information
1 parent
a41b36d
commit 75421e8
Showing
12 changed files
with
138 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
The minimum supported versions of dependencies and Python have been updated, this release requires: | ||
* Python 3.11 | ||
* asdf 2.15 (and plugin version bumps) | ||
* dask 2023.2 | ||
* matplotlib 3.7 | ||
* ndcube 2.1 | ||
* numpy 1.25 | ||
* parfive 2.1 | ||
* sunpy 5.0 | ||
This release of ``dkist`` includes both scheduled bumps to our dependencies as well as a special bump of gwcs to version 0.24, and associated dependencies. | ||
The version upgrade to gwcs 0.24 fixes the inverse transform (world to pixel) for VISP WCSs. | ||
|
||
* Python >= 3.11 | ||
* dask >= 2023.2 | ||
* gwcs >= 0.24 | ||
* matplotlib >= 3.7 | ||
* ndcube >= 2.1 | ||
* numpy >= 1.25 | ||
* parfive >= 2.1 | ||
* sunpy >= 5.0.7 | ||
* asdf >= 3.3 | ||
* asdf-astropy >= 0.5 | ||
* asdf-coordinate-schemas >= 0.3 | ||
* asdf-transform-schemas >= 0.5 | ||
* asdf-wcs-schemas >= 0.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.. _dkist:whatsnew:1.10: | ||
|
||
***** | ||
v1.10 | ||
***** | ||
|
||
ASDF File Updates | ||
================= | ||
|
||
This release of ``dkist`` includes compatibility with new metadata ASDF files generated after 2025/02/07. | ||
|
||
.. warning:: | ||
|
||
You should re-download all ASDF files when upgrading to this version of ``dkist``, particularly for VBI data. | ||
|
||
These ASDF files change the ordering of the tiles inside a `.TiledDataset` object to correctly account for the differences between column-major (in FITS files) and row-major ordering (in numpy); this release of ``dkist`` updates the `.TiledDataset.plot` method to correctly plot these tiles in the expected order. | ||
It should be noted that with new metadata ASDF files the indexing of specific tiles will have changed. | ||
|
||
|
||
Dependency Updates | ||
================== | ||
|
||
This release of ``dkist`` includes both scheduled bumps to our dependencies as well as a special bump of gwcs to version 0.24, and associated dependencies. | ||
The version upgrade to gwcs 0.24 fixes the inverse transform (world to pixel) for VISP WCSs. | ||
|
||
* Python >= 3.11 | ||
* dask >= 2023.2 | ||
* gwcs >= 0.24 | ||
* matplotlib >= 3.7 | ||
* ndcube >= 2.1 | ||
* numpy >= 1.25 | ||
* parfive >= 2.1 | ||
* sunpy >= 5.0.7 | ||
* asdf >= 3.3 | ||
* asdf-astropy >= 0.5 | ||
* asdf-coordinate-schemas >= 0.3 | ||
* asdf-transform-schemas >= 0.5 | ||
* asdf-wcs-schemas >= 0.4 | ||
|
||
ASDF File History | ||
================= | ||
|
||
History data from the metadata ASDF files is now accessible via ``Dataset.meta["history"]`` and ``TiledDataset.meta["history"]``, this history dictionary includes both entries relating to versions of packages used when writing the file and explicitly added history entries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ Release History | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
1.10 | ||
1.1 | ||
1.0 | ||
changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters