dkist-processing-cryonirsp 1.14.0__py3-none-any.whl → 1.14.1rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dkist-processing-cryonirsp might be problematic. Click here for more details.
- changelog/223.misc.rst +1 -0
- dkist_processing_cryonirsp/tests/header_models.py +36 -3
- dkist_processing_cryonirsp/tests/test_parse.py +7 -0
- {dkist_processing_cryonirsp-1.14.0.dist-info → dkist_processing_cryonirsp-1.14.1rc1.dist-info}/METADATA +31 -29
- {dkist_processing_cryonirsp-1.14.0.dist-info → dkist_processing_cryonirsp-1.14.1rc1.dist-info}/RECORD +7 -6
- {dkist_processing_cryonirsp-1.14.0.dist-info → dkist_processing_cryonirsp-1.14.1rc1.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.14.0.dist-info → dkist_processing_cryonirsp-1.14.1rc1.dist-info}/top_level.txt +0 -0
changelog/223.misc.rst
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Update `dkist-processing-common` to v11.7.0, which makes constants for the dataset extras.
|
|
@@ -8,12 +8,9 @@ import uuid
|
|
|
8
8
|
from random import choice
|
|
9
9
|
|
|
10
10
|
import numpy as np
|
|
11
|
-
import pytest
|
|
12
|
-
from astropy.io import fits
|
|
13
11
|
from astropy.wcs import WCS
|
|
14
12
|
from dkist_data_simulator.dataset import key_function
|
|
15
13
|
from dkist_data_simulator.spec122 import Spec122Dataset
|
|
16
|
-
from dkist_header_validator import spec122_validator
|
|
17
14
|
|
|
18
15
|
from dkist_processing_cryonirsp.models.exposure_conditions import AllowableOpticalDensityFilterNames
|
|
19
16
|
from dkist_processing_cryonirsp.models.exposure_conditions import ExposureConditions
|
|
@@ -54,6 +51,18 @@ class CryonirspHeaders(Spec122Dataset):
|
|
|
54
51
|
|
|
55
52
|
self.add_constant_key("CAM__004", exp_time)
|
|
56
53
|
|
|
54
|
+
self.add_constant_key("CAM__001", "camera_id")
|
|
55
|
+
self.add_constant_key("CAM__002", "camera_name")
|
|
56
|
+
self.add_constant_key("CAM__003", 1)
|
|
57
|
+
self.add_constant_key("CAM__009", 1)
|
|
58
|
+
self.add_constant_key("CAM__010", 1)
|
|
59
|
+
self.add_constant_key("CAM__011", 1)
|
|
60
|
+
self.add_constant_key("CAM__012", 1)
|
|
61
|
+
self.add_constant_key("ID___014", "v1")
|
|
62
|
+
self.add_constant_key("TELTRACK", "Fixed Solar Rotation Tracking")
|
|
63
|
+
self.add_constant_key("TTBLTRCK", "fixed angle on sun")
|
|
64
|
+
self.add_constant_key("CAM__014", 10) # num_raw_frames_per_fpa
|
|
65
|
+
|
|
57
66
|
@key_function("CRSP_042")
|
|
58
67
|
# current modstate
|
|
59
68
|
def current_modstate(self, key: str):
|
|
@@ -176,6 +185,13 @@ class CryonirspHeadersValidDarkFrames(CryonirspHeaders):
|
|
|
176
185
|
self.add_constant_key("CRSP_041", 1)
|
|
177
186
|
self.add_constant_key("CRSP_042", 1)
|
|
178
187
|
|
|
188
|
+
self.add_constant_key("TELSCAN", "Raster")
|
|
189
|
+
self.add_constant_key("PAC__002", "lamp")
|
|
190
|
+
self.add_constant_key("PAC__003", "on")
|
|
191
|
+
self.add_constant_key("PAC__004", "Sapphire Polarizer")
|
|
192
|
+
self.add_constant_key("PAC__006", "SiO2 OC")
|
|
193
|
+
self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
|
|
194
|
+
|
|
179
195
|
|
|
180
196
|
class CryonirspHeadersValidLampGainFrames(CryonirspHeaders):
|
|
181
197
|
def __init__(
|
|
@@ -230,6 +246,10 @@ class CryonirspHeadersValidCISolarGainFrames(CryonirspHeaders):
|
|
|
230
246
|
self.add_constant_key("CRSP_007", 1)
|
|
231
247
|
# lamp (clear, lamp, undefined)
|
|
232
248
|
self.add_constant_key("PAC__002", "clear")
|
|
249
|
+
self.add_constant_key("PAC__003", "off")
|
|
250
|
+
self.add_constant_key("PAC__004", "clear")
|
|
251
|
+
self.add_constant_key("PAC__006", "clear")
|
|
252
|
+
self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
|
|
233
253
|
self.add_constant_key("TELSCAN", "Raster")
|
|
234
254
|
# inst prog id
|
|
235
255
|
self.add_constant_key("ID___004")
|
|
@@ -263,6 +283,10 @@ class CryonirspHeadersValidSPSolarGainFrames(CryonirspHeaders):
|
|
|
263
283
|
self.add_constant_key("CRSP_007", 1)
|
|
264
284
|
# lamp (clear, lamp, undefined)
|
|
265
285
|
self.add_constant_key("PAC__002", "clear")
|
|
286
|
+
self.add_constant_key("PAC__003", "off")
|
|
287
|
+
self.add_constant_key("PAC__004", "clear")
|
|
288
|
+
self.add_constant_key("PAC__006", "clear")
|
|
289
|
+
self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
|
|
266
290
|
self.add_constant_key("TELSCAN", "Raster")
|
|
267
291
|
# inst prog id
|
|
268
292
|
self.add_constant_key("ID___004")
|
|
@@ -481,6 +505,9 @@ class ModulatedSolarGainHeaders(SimpleModulatedHeaders):
|
|
|
481
505
|
self.add_constant_key("CRSP_007", 1)
|
|
482
506
|
# inst prog id
|
|
483
507
|
self.add_constant_key("ID___004")
|
|
508
|
+
self.add_constant_key("PAC__004", "clear")
|
|
509
|
+
self.add_constant_key("PAC__006", "clear")
|
|
510
|
+
self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
|
|
484
511
|
|
|
485
512
|
|
|
486
513
|
class ModulatedDarkHeaders(SimpleModulatedHeaders):
|
|
@@ -514,6 +541,12 @@ class ModulatedDarkHeaders(SimpleModulatedHeaders):
|
|
|
514
541
|
# inst prog id
|
|
515
542
|
self.add_constant_key("ID___004")
|
|
516
543
|
self.add_constant_key("WAVELNTH", 0.0)
|
|
544
|
+
self.add_constant_key("TELSCAN", "Raster")
|
|
545
|
+
self.add_constant_key("PAC__002", "lamp")
|
|
546
|
+
self.add_constant_key("PAC__003", "on")
|
|
547
|
+
self.add_constant_key("PAC__004", "Sapphire Polarizer")
|
|
548
|
+
self.add_constant_key("PAC__006", "SiO2 OC")
|
|
549
|
+
self.add_constant_key("PAC__008", "FieldStop (5arcmin)")
|
|
517
550
|
|
|
518
551
|
|
|
519
552
|
class ModulatedPolcalHeaders(SimpleModulatedHeaders):
|
|
@@ -1275,6 +1275,13 @@ def test_parse_cryonirsp_linearized_data_constants(
|
|
|
1275
1275
|
task.constants._db_dict[CryonirspBudName.grating_constant.value] == 770970.3576216539
|
|
1276
1276
|
) # From `SimpleModulatedHeaders`
|
|
1277
1277
|
|
|
1278
|
+
assert task.constants._db_dict["CAMERA_NAME"] == "camera_name"
|
|
1279
|
+
assert task.constants._db_dict["DARK_GOS_LEVEL3_STATUS"] == "lamp"
|
|
1280
|
+
assert task.constants._db_dict["SOLAR_GAIN_GOS_LEVEL3_STATUS"] == "clear"
|
|
1281
|
+
assert task.constants._db_dict["DARK_NUM_RAW_FRAMES_PER_FPA"] == 10
|
|
1282
|
+
assert task.constants._db_dict["SOLAR_GAIN_NUM_RAW_FRAMES_PER_FPA"] == 10
|
|
1283
|
+
assert task.constants._db_dict["POLCAL_NUM_RAW_FRAMES_PER_FPA"] == 10
|
|
1284
|
+
|
|
1278
1285
|
|
|
1279
1286
|
@pytest.mark.parametrize("arm_id", ["SP"])
|
|
1280
1287
|
def test_parse_cryonirsp_linearized_data_internal_scan_loops_as_map_scan_and_scan_step(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.14.
|
|
3
|
+
Version: 1.14.1rc1
|
|
4
4
|
Summary: Science processing code for the Cryo-NIRSP instrument on DKIST
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -17,7 +17,7 @@ Requires-Dist: Pillow==10.4.0
|
|
|
17
17
|
Requires-Dist: astropy==7.0.2
|
|
18
18
|
Requires-Dist: dkist-fits-specifications==4.17.0
|
|
19
19
|
Requires-Dist: dkist-header-validator==5.2.1
|
|
20
|
-
Requires-Dist: dkist-processing-common==11.
|
|
20
|
+
Requires-Dist: dkist-processing-common==11.7.0rc4
|
|
21
21
|
Requires-Dist: dkist-processing-math==2.2.1
|
|
22
22
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
23
23
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
@@ -70,14 +70,14 @@ Requires-Dist: Flask-AppBuilder==4.5.3; extra == "frozen"
|
|
|
70
70
|
Requires-Dist: Flask-Babel==2.0.0; extra == "frozen"
|
|
71
71
|
Requires-Dist: Flask-Caching==2.3.1; extra == "frozen"
|
|
72
72
|
Requires-Dist: Flask-JWT-Extended==4.7.1; extra == "frozen"
|
|
73
|
-
Requires-Dist: Flask-Limiter==3.
|
|
73
|
+
Requires-Dist: Flask-Limiter==3.12; extra == "frozen"
|
|
74
74
|
Requires-Dist: Flask-Login==0.6.3; extra == "frozen"
|
|
75
75
|
Requires-Dist: Flask-SQLAlchemy==2.5.1; extra == "frozen"
|
|
76
76
|
Requires-Dist: Flask-Session==0.5.0; extra == "frozen"
|
|
77
77
|
Requires-Dist: Flask-WTF==1.2.2; extra == "frozen"
|
|
78
78
|
Requires-Dist: Jinja2==3.1.6; extra == "frozen"
|
|
79
79
|
Requires-Dist: Mako==1.3.10; extra == "frozen"
|
|
80
|
-
Requires-Dist: MarkupSafe==3.0.
|
|
80
|
+
Requires-Dist: MarkupSafe==3.0.3; extra == "frozen"
|
|
81
81
|
Requires-Dist: PeakUtils==1.3.5; extra == "frozen"
|
|
82
82
|
Requires-Dist: PyJWT==2.10.1; extra == "frozen"
|
|
83
83
|
Requires-Dist: PyYAML==6.0.3; extra == "frozen"
|
|
@@ -89,7 +89,7 @@ Requires-Dist: WTForms==3.2.1; extra == "frozen"
|
|
|
89
89
|
Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
|
|
90
90
|
Requires-Dist: aioftp==0.27.2; extra == "frozen"
|
|
91
91
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
92
|
-
Requires-Dist: aiohttp==3.
|
|
92
|
+
Requires-Dist: aiohttp==3.13.0; extra == "frozen"
|
|
93
93
|
Requires-Dist: aiosignal==1.4.0; extra == "frozen"
|
|
94
94
|
Requires-Dist: aiosmtplib==4.0.2; extra == "frozen"
|
|
95
95
|
Requires-Dist: alembic==1.16.5; extra == "frozen"
|
|
@@ -106,27 +106,27 @@ Requires-Dist: apache-airflow-providers-ftp==3.13.2; extra == "frozen"
|
|
|
106
106
|
Requires-Dist: apache-airflow-providers-http==5.3.4; extra == "frozen"
|
|
107
107
|
Requires-Dist: apache-airflow-providers-imap==3.9.2; extra == "frozen"
|
|
108
108
|
Requires-Dist: apache-airflow-providers-postgres==6.3.0; extra == "frozen"
|
|
109
|
-
Requires-Dist: apache-airflow-providers-smtp==2.3.
|
|
109
|
+
Requires-Dist: apache-airflow-providers-smtp==2.3.1; extra == "frozen"
|
|
110
110
|
Requires-Dist: apache-airflow-providers-sqlite==4.1.2; extra == "frozen"
|
|
111
111
|
Requires-Dist: apispec==6.8.4; extra == "frozen"
|
|
112
112
|
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
113
113
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
114
114
|
Requires-Dist: asdf_standard==1.4.0; extra == "frozen"
|
|
115
115
|
Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
116
|
-
Requires-Dist: asgiref==3.
|
|
116
|
+
Requires-Dist: asgiref==3.10.0; extra == "frozen"
|
|
117
117
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
118
118
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
119
|
-
Requires-Dist: astropy-iers-data==0.2025.
|
|
119
|
+
Requires-Dist: astropy-iers-data==0.2025.10.6.0.35.25; extra == "frozen"
|
|
120
120
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
121
|
-
Requires-Dist: attrs==25.
|
|
121
|
+
Requires-Dist: attrs==25.4.0; extra == "frozen"
|
|
122
122
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
123
123
|
Requires-Dist: billiard==4.2.2; extra == "frozen"
|
|
124
124
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
125
|
-
Requires-Dist: boto3==1.40.
|
|
126
|
-
Requires-Dist: botocore==1.40.
|
|
125
|
+
Requires-Dist: boto3==1.40.46; extra == "frozen"
|
|
126
|
+
Requires-Dist: botocore==1.40.46; extra == "frozen"
|
|
127
127
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
128
128
|
Requires-Dist: celery==5.3.1; extra == "frozen"
|
|
129
|
-
Requires-Dist: certifi==2025.
|
|
129
|
+
Requires-Dist: certifi==2025.10.5; extra == "frozen"
|
|
130
130
|
Requires-Dist: cffi==2.0.0; extra == "frozen"
|
|
131
131
|
Requires-Dist: charset-normalizer==3.4.3; extra == "frozen"
|
|
132
132
|
Requires-Dist: click==8.3.0; extra == "frozen"
|
|
@@ -140,15 +140,15 @@ Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
|
140
140
|
Requires-Dist: contourpy==1.3.3; extra == "frozen"
|
|
141
141
|
Requires-Dist: cron_descriptor==2.0.6; extra == "frozen"
|
|
142
142
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
143
|
-
Requires-Dist: cryptography==46.0.
|
|
143
|
+
Requires-Dist: cryptography==46.0.2; extra == "frozen"
|
|
144
144
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
145
145
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
146
146
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
147
147
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
148
148
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
149
|
-
Requires-Dist: dkist-processing-common==11.
|
|
149
|
+
Requires-Dist: dkist-processing-common==11.7.0rc4; extra == "frozen"
|
|
150
150
|
Requires-Dist: dkist-processing-core==6.0.0; extra == "frozen"
|
|
151
|
-
Requires-Dist: dkist-processing-cryonirsp==1.14.
|
|
151
|
+
Requires-Dist: dkist-processing-cryonirsp==1.14.1rc1; extra == "frozen"
|
|
152
152
|
Requires-Dist: dkist-processing-math==2.2.1; extra == "frozen"
|
|
153
153
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
154
154
|
Requires-Dist: dkist-service-configuration==4.1.7; extra == "frozen"
|
|
@@ -158,13 +158,14 @@ Requires-Dist: dnspython==2.8.0; extra == "frozen"
|
|
|
158
158
|
Requires-Dist: email-validator==2.3.0; extra == "frozen"
|
|
159
159
|
Requires-Dist: fastjsonschema==2.21.2; extra == "frozen"
|
|
160
160
|
Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
161
|
-
Requires-Dist: fonttools==4.60.
|
|
162
|
-
Requires-Dist: frozenlist==1.
|
|
161
|
+
Requires-Dist: fonttools==4.60.1; extra == "frozen"
|
|
162
|
+
Requires-Dist: frozenlist==1.8.0; extra == "frozen"
|
|
163
163
|
Requires-Dist: fsspec==2025.9.0; extra == "frozen"
|
|
164
|
-
Requires-Dist: globus-sdk==3.
|
|
164
|
+
Requires-Dist: globus-sdk==3.65.0; extra == "frozen"
|
|
165
165
|
Requires-Dist: google-re2==1.1.20250805; extra == "frozen"
|
|
166
166
|
Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
|
|
167
167
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
168
|
+
Requires-Dist: greenlet==3.2.4; extra == "frozen"
|
|
168
169
|
Requires-Dist: grpcio==1.75.1; extra == "frozen"
|
|
169
170
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
170
171
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -186,7 +187,7 @@ Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
|
186
187
|
Requires-Dist: largestinteriorrectangle==0.2.1; extra == "frozen"
|
|
187
188
|
Requires-Dist: lazy-object-proxy==1.12.0; extra == "frozen"
|
|
188
189
|
Requires-Dist: lazy_loader==0.4; extra == "frozen"
|
|
189
|
-
Requires-Dist: limits==5.
|
|
190
|
+
Requires-Dist: limits==5.6.0; extra == "frozen"
|
|
190
191
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
191
192
|
Requires-Dist: llvmlite==0.44.0; extra == "frozen"
|
|
192
193
|
Requires-Dist: lmfit==1.3.4; extra == "frozen"
|
|
@@ -202,7 +203,7 @@ Requires-Dist: mdurl==0.1.2; extra == "frozen"
|
|
|
202
203
|
Requires-Dist: methodtools==0.4.7; extra == "frozen"
|
|
203
204
|
Requires-Dist: more-itertools==10.8.0; extra == "frozen"
|
|
204
205
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
205
|
-
Requires-Dist: multidict==6.
|
|
206
|
+
Requires-Dist: multidict==6.7.0; extra == "frozen"
|
|
206
207
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
207
208
|
Requires-Dist: networkx==3.5; extra == "frozen"
|
|
208
209
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
@@ -234,8 +235,9 @@ Requires-Dist: opentelemetry-semantic-conventions==0.58b0; extra == "frozen"
|
|
|
234
235
|
Requires-Dist: opentelemetry-util-http==0.58b0; extra == "frozen"
|
|
235
236
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
236
237
|
Requires-Dist: packaging==25.0; extra == "frozen"
|
|
237
|
-
Requires-Dist: pandas==2.3.
|
|
238
|
+
Requires-Dist: pandas==2.3.3; extra == "frozen"
|
|
238
239
|
Requires-Dist: parfive==2.2.0; extra == "frozen"
|
|
240
|
+
Requires-Dist: pathlib_abc==0.5.1; extra == "frozen"
|
|
239
241
|
Requires-Dist: pathspec==0.12.1; extra == "frozen"
|
|
240
242
|
Requires-Dist: pendulum==3.1.0; extra == "frozen"
|
|
241
243
|
Requires-Dist: pika==1.3.2; extra == "frozen"
|
|
@@ -248,14 +250,14 @@ Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
|
248
250
|
Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
249
251
|
Requires-Dist: prometheus_client==0.23.1; extra == "frozen"
|
|
250
252
|
Requires-Dist: prompt_toolkit==3.0.52; extra == "frozen"
|
|
251
|
-
Requires-Dist: propcache==0.
|
|
253
|
+
Requires-Dist: propcache==0.4.0; extra == "frozen"
|
|
252
254
|
Requires-Dist: protobuf==6.32.1; extra == "frozen"
|
|
253
255
|
Requires-Dist: psutil==7.1.0; extra == "frozen"
|
|
254
256
|
Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
|
|
255
257
|
Requires-Dist: pycparser==2.23; extra == "frozen"
|
|
256
|
-
Requires-Dist: pydantic==2.
|
|
258
|
+
Requires-Dist: pydantic==2.12.0; extra == "frozen"
|
|
257
259
|
Requires-Dist: pydantic-settings==2.11.0; extra == "frozen"
|
|
258
|
-
Requires-Dist: pydantic_core==2.
|
|
260
|
+
Requires-Dist: pydantic_core==2.41.1; extra == "frozen"
|
|
259
261
|
Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
|
|
260
262
|
Requires-Dist: pyparsing==3.2.5; extra == "frozen"
|
|
261
263
|
Requires-Dist: python-daemon==3.1.2; extra == "frozen"
|
|
@@ -269,7 +271,7 @@ Requires-Dist: referencing==0.36.2; extra == "frozen"
|
|
|
269
271
|
Requires-Dist: requests==2.32.5; extra == "frozen"
|
|
270
272
|
Requires-Dist: requests-toolbelt==1.0.0; extra == "frozen"
|
|
271
273
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
272
|
-
Requires-Dist: rich==
|
|
274
|
+
Requires-Dist: rich==13.9.4; extra == "frozen"
|
|
273
275
|
Requires-Dist: rich-argparse==1.7.1; extra == "frozen"
|
|
274
276
|
Requires-Dist: rpds-py==0.27.1; extra == "frozen"
|
|
275
277
|
Requires-Dist: s3transfer==0.14.0; extra == "frozen"
|
|
@@ -288,16 +290,16 @@ Requires-Dist: talus==1.3.4; extra == "frozen"
|
|
|
288
290
|
Requires-Dist: tenacity==8.5.0; extra == "frozen"
|
|
289
291
|
Requires-Dist: termcolor==3.1.0; extra == "frozen"
|
|
290
292
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
291
|
-
Requires-Dist: tifffile==2025.
|
|
293
|
+
Requires-Dist: tifffile==2025.10.4; extra == "frozen"
|
|
292
294
|
Requires-Dist: tornado==6.5.2; extra == "frozen"
|
|
293
295
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
294
296
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
295
|
-
Requires-Dist: typing-inspection==0.4.
|
|
297
|
+
Requires-Dist: typing-inspection==0.4.2; extra == "frozen"
|
|
296
298
|
Requires-Dist: typing_extensions==4.15.0; extra == "frozen"
|
|
297
299
|
Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
298
300
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
299
301
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
300
|
-
Requires-Dist: universal_pathlib==0.2
|
|
302
|
+
Requires-Dist: universal_pathlib==0.3.2; extra == "frozen"
|
|
301
303
|
Requires-Dist: urllib3==2.5.0; extra == "frozen"
|
|
302
304
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
303
305
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
@@ -305,7 +307,7 @@ Requires-Dist: wcwidth==0.2.14; extra == "frozen"
|
|
|
305
307
|
Requires-Dist: wirerope==1.0.0; extra == "frozen"
|
|
306
308
|
Requires-Dist: wrapt==1.17.3; extra == "frozen"
|
|
307
309
|
Requires-Dist: yamale==6.0.0; extra == "frozen"
|
|
308
|
-
Requires-Dist: yarl==1.
|
|
310
|
+
Requires-Dist: yarl==1.22.0; extra == "frozen"
|
|
309
311
|
Requires-Dist: zipp==3.23.0; extra == "frozen"
|
|
310
312
|
|
|
311
313
|
dkist-processing-cryonirsp
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
changelog/223.misc.rst,sha256=YoX7N7k2NKgC-P0z-Aqv8D_Z07-XxhS0lzpm-rQVCdw,91
|
|
2
3
|
dkist_processing_cryonirsp/__init__.py,sha256=L9tNDcyFnHkx7DWTXAbchOb8ok7TRi80wrrEXY99_2g,351
|
|
3
4
|
dkist_processing_cryonirsp/config.py,sha256=D57uhnlP6NLTxDI5G_DDbEb0ZpMUfcNJivqDIXfGQRw,642
|
|
4
5
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -50,7 +51,7 @@ dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=BxPV4sqV6s79JpvkXJF
|
|
|
50
51
|
dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=31DqF39bClHhq6NiAsLwP8huebS6F-J5AvAJIYvYp04,11621
|
|
51
52
|
dkist_processing_cryonirsp/tests/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
52
53
|
dkist_processing_cryonirsp/tests/conftest.py,sha256=z7SJ4OWqW4Hb9DD3XAc4CVpef_sxYu1OwtIzJJPq4Z4,18089
|
|
53
|
-
dkist_processing_cryonirsp/tests/header_models.py,sha256=
|
|
54
|
+
dkist_processing_cryonirsp/tests/header_models.py,sha256=S_ULSMGeacinuFgj4CzBOp8SuM_1lIxE1nVYhiz15yA,22965
|
|
54
55
|
dkist_processing_cryonirsp/tests/test_assemble_movie.py,sha256=fvdvyPabFky_0YqJMPs4g78oCQLSrRPYkddFzzXIbVo,6195
|
|
55
56
|
dkist_processing_cryonirsp/tests/test_assemble_qualilty.py,sha256=upk-oUqVBHGK3F0eemshLpAPrnfh9mbeuZXow4E1Rmc,16859
|
|
56
57
|
dkist_processing_cryonirsp/tests/test_bad_pixel_maps.py,sha256=aaxuEcEynYIMrdO_oyQAjt3JAxpf54gFRcHYGZg3xbE,4809
|
|
@@ -65,7 +66,7 @@ dkist_processing_cryonirsp/tests/test_instrument_polarization.py,sha256=RU9VVNoi
|
|
|
65
66
|
dkist_processing_cryonirsp/tests/test_linearity_correction.py,sha256=xYwfEAiNSleCAxpLH7amC5gQh8QHYBuzghd7ETYro7M,9309
|
|
66
67
|
dkist_processing_cryonirsp/tests/test_make_movie_frames.py,sha256=oQnUmb9IxkRG7NrY00oS1g42L_LP941vdYdbEbI47gE,4858
|
|
67
68
|
dkist_processing_cryonirsp/tests/test_parameters.py,sha256=neREZBFK7ylXe5FiLj6u-2EZZtuKencK55fj3mx6qo4,11089
|
|
68
|
-
dkist_processing_cryonirsp/tests/test_parse.py,sha256=
|
|
69
|
+
dkist_processing_cryonirsp/tests/test_parse.py,sha256=crBfC7BrE47dRs3hKfrbzwyYjBX6--7CXE61RKj95pA,57579
|
|
69
70
|
dkist_processing_cryonirsp/tests/test_quality.py,sha256=DrlHre7thON2x4QzWdupuqKT_WoPtW43Jnjb7lLnp3I,8083
|
|
70
71
|
dkist_processing_cryonirsp/tests/test_sp_beam_boundaries.py,sha256=ppk8B8CvRiIuxJkzH2bEbS1H9TndADU-ABwocZaKIpk,4904
|
|
71
72
|
dkist_processing_cryonirsp/tests/test_sp_geometric.py,sha256=THrVlmd8K44zMtYWKenZDLpUO7yDnZoaUWQwLcqE9U0,15645
|
|
@@ -106,7 +107,7 @@ docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI
|
|
|
106
107
|
docs/sp_science_calibration.rst,sha256=XL-H_hyzqwPHYNW3j-muItX_hGqMi-gjFRQbHp60LlU,2997
|
|
107
108
|
docs/wavelength_calibration.rst,sha256=s7ds_QKlVJ68fdONSY3DOBvHHaQC0JR_D4goG_VVKWw,3457
|
|
108
109
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
109
|
-
dkist_processing_cryonirsp-1.14.
|
|
110
|
-
dkist_processing_cryonirsp-1.14.
|
|
111
|
-
dkist_processing_cryonirsp-1.14.
|
|
112
|
-
dkist_processing_cryonirsp-1.14.
|
|
110
|
+
dkist_processing_cryonirsp-1.14.1rc1.dist-info/METADATA,sha256=pVQvukyWkwYNfLQ3jWd3uBYE4U40ktTevgnWBfSi8VA,29338
|
|
111
|
+
dkist_processing_cryonirsp-1.14.1rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
+
dkist_processing_cryonirsp-1.14.1rc1.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
113
|
+
dkist_processing_cryonirsp-1.14.1rc1.dist-info/RECORD,,
|
{dkist_processing_cryonirsp-1.14.0.dist-info → dkist_processing_cryonirsp-1.14.1rc1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|