Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/730.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix some minor breakages to allow release
12 changes: 9 additions & 3 deletions dkist/io/asdf/resources/schemas/dataset-1.3.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,21 @@ properties:

parameters:
description: A copy of the parameters used to generate this dataset.
type: object
anyOf:
- type: object
- type: array

observation_input_frames:
description: A copy of the observation input frames used to generate this dataset.
type: object
anyOf:
- type: object
- type: array

calibration_input_frames:
description: A copy of the calibration input frames used to generate this dataset.
type: object
anyOf:
- type: object
- type: array

recipe_run_config:
description: A copy of the recipe configurations used to generate this dataset.
Expand Down
3 changes: 3 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ filterwarnings =
# See https://github.com/numpy/numpy/issues/15748#issuecomment-598584838
ignore:numpy.ufunc size changed:RuntimeWarning
ignore:numpy.ndarray size changed:RuntimeWarning
# Warnings introduced in astropy modelling by NumPy 2.5, these can be removed when astropy fix it
ignore:.*Setting the shape on a NumPy array has been deprecated in NumPy 2.5:DeprecationWarning
ignore:.*Setting the dtype on a NumPy array has been deprecated in NumPy 2.5:DeprecationWarning
# This isn't really an issue it's an annoyance, it's triggered by printing
# an astropy table inside a test, which is generally only done when
# debugging.
Expand Down
Loading