dkist-processing-cryonirsp 1.7.7rc1__py3-none-any.whl → 1.8.1__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.
- dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py +8 -2
- dkist_processing_cryonirsp/tests/local_trial_workflows/local_trial_helpers.py +8 -8
- {dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/METADATA +48 -49
- {dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/RECORD +6 -7
- changelog/190.misc.rst +0 -1
- {dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/top_level.txt +0 -0
|
@@ -123,10 +123,16 @@ class ShiftMeasurementsMixin:
|
|
|
123
123
|
array_2_strip, axis=array_2_axis_params.long_axis
|
|
124
124
|
)
|
|
125
125
|
|
|
126
|
+
if axis == SPECTRAL:
|
|
127
|
+
# Chop 10% off of the edges of the spectra to remove known edge effects before determining shift.
|
|
128
|
+
tenth_of_length = array_1_gradient.shape[0] // 10
|
|
129
|
+
array_1_gradient = array_1_gradient[tenth_of_length:-tenth_of_length]
|
|
130
|
+
array_2_gradient = array_2_gradient[tenth_of_length:-tenth_of_length]
|
|
131
|
+
|
|
126
132
|
# Correlate the gradient signals to get the shift of array 2 relative to array 1
|
|
127
133
|
shift_array, error, phasediff = skir.phase_cross_correlation(
|
|
128
|
-
array_1_gradient,
|
|
129
|
-
array_2_gradient,
|
|
134
|
+
reference_image=array_1_gradient,
|
|
135
|
+
moving_image=array_2_gradient,
|
|
130
136
|
upsample_factor=upsample_factor,
|
|
131
137
|
)
|
|
132
138
|
# Flip the sign to convert from correction to measurement.
|
|
@@ -24,17 +24,17 @@ from dkist_processing_cryonirsp.tests.conftest import FileParameter
|
|
|
24
24
|
|
|
25
25
|
# These are the workflow versions of the polyfit coefficient parameters
|
|
26
26
|
WORKFLOW_LINEARIZATION_POLYFIT_COEFFS_CI = [
|
|
27
|
-
1.
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
-
|
|
27
|
+
1.10505215e00,
|
|
28
|
+
-7.50178863e-06,
|
|
29
|
+
1.43050375e-10,
|
|
30
|
+
-1.62898848e-15,
|
|
31
31
|
]
|
|
32
32
|
|
|
33
33
|
WORKFLOW_LINEARIZATION_POLYFIT_COEFFS_SP = [
|
|
34
|
-
1.
|
|
35
|
-
-1.
|
|
36
|
-
2.
|
|
37
|
-
-
|
|
34
|
+
1.14636662,
|
|
35
|
+
-1.05173302e-05,
|
|
36
|
+
2.18059789e-10,
|
|
37
|
+
-3.00894653e-15,
|
|
38
38
|
]
|
|
39
39
|
|
|
40
40
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.8.1
|
|
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==10.
|
|
20
|
+
Requires-Dist: dkist-processing-common==10.9.0
|
|
21
21
|
Requires-Dist: dkist-processing-math==2.2.0
|
|
22
22
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
23
23
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
@@ -43,16 +43,16 @@ Requires-Dist: dkist-processing-cryonirsp[asdf]; extra == "test"
|
|
|
43
43
|
Requires-Dist: dkist-processing-cryonirsp[quality]; extra == "test"
|
|
44
44
|
Provides-Extra: inventory
|
|
45
45
|
Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
|
|
46
|
-
Requires-Dist: dkist-inventory==1.8.
|
|
46
|
+
Requires-Dist: dkist-inventory==1.8.4; extra == "inventory"
|
|
47
47
|
Provides-Extra: asdf
|
|
48
48
|
Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
|
|
49
|
-
Requires-Dist: dkist-inventory[asdf]==1.8.
|
|
49
|
+
Requires-Dist: dkist-inventory[asdf]==1.8.4; extra == "asdf"
|
|
50
50
|
Provides-Extra: quality
|
|
51
51
|
Requires-Dist: dkist-quality==1.2.1; extra == "quality"
|
|
52
52
|
Provides-Extra: grogu
|
|
53
53
|
Requires-Dist: dkist; extra == "grogu"
|
|
54
54
|
Requires-Dist: pyparsing; extra == "grogu"
|
|
55
|
-
Requires-Dist: dkist-inventory>=1.8.
|
|
55
|
+
Requires-Dist: dkist-inventory>=1.8.4; extra == "grogu"
|
|
56
56
|
Provides-Extra: docs
|
|
57
57
|
Requires-Dist: sphinx; extra == "docs"
|
|
58
58
|
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
@@ -80,28 +80,28 @@ Requires-Dist: MarkupSafe==3.0.2; extra == "frozen"
|
|
|
80
80
|
Requires-Dist: PeakUtils==1.3.5; extra == "frozen"
|
|
81
81
|
Requires-Dist: PyJWT==2.10.1; extra == "frozen"
|
|
82
82
|
Requires-Dist: PyYAML==6.0.2; extra == "frozen"
|
|
83
|
-
Requires-Dist: Pygments==2.19.
|
|
83
|
+
Requires-Dist: Pygments==2.19.2; extra == "frozen"
|
|
84
84
|
Requires-Dist: SQLAlchemy==1.4.54; extra == "frozen"
|
|
85
85
|
Requires-Dist: SQLAlchemy-JSONField==1.0.2; extra == "frozen"
|
|
86
86
|
Requires-Dist: SQLAlchemy-Utils==0.41.2; extra == "frozen"
|
|
87
87
|
Requires-Dist: WTForms==3.2.1; extra == "frozen"
|
|
88
88
|
Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
|
|
89
|
-
Requires-Dist: aioftp==0.
|
|
89
|
+
Requires-Dist: aioftp==0.26.1; extra == "frozen"
|
|
90
90
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
91
|
-
Requires-Dist: aiohttp==3.12.
|
|
91
|
+
Requires-Dist: aiohttp==3.12.13; extra == "frozen"
|
|
92
92
|
Requires-Dist: aiosignal==1.3.2; extra == "frozen"
|
|
93
|
-
Requires-Dist: alembic==1.16.
|
|
93
|
+
Requires-Dist: alembic==1.16.2; extra == "frozen"
|
|
94
94
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
95
95
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
96
96
|
Requires-Dist: anyio==4.9.0; extra == "frozen"
|
|
97
97
|
Requires-Dist: apache-airflow==2.10.5; extra == "frozen"
|
|
98
|
-
Requires-Dist: apache-airflow-providers-celery==3.
|
|
99
|
-
Requires-Dist: apache-airflow-providers-common-compat==1.7.
|
|
98
|
+
Requires-Dist: apache-airflow-providers-celery==3.12.0; extra == "frozen"
|
|
99
|
+
Requires-Dist: apache-airflow-providers-common-compat==1.7.1; extra == "frozen"
|
|
100
100
|
Requires-Dist: apache-airflow-providers-common-io==1.6.0; extra == "frozen"
|
|
101
|
-
Requires-Dist: apache-airflow-providers-common-sql==1.27.
|
|
101
|
+
Requires-Dist: apache-airflow-providers-common-sql==1.27.2; extra == "frozen"
|
|
102
102
|
Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
|
|
103
103
|
Requires-Dist: apache-airflow-providers-ftp==3.13.0; extra == "frozen"
|
|
104
|
-
Requires-Dist: apache-airflow-providers-http==5.3.
|
|
104
|
+
Requires-Dist: apache-airflow-providers-http==5.3.1; extra == "frozen"
|
|
105
105
|
Requires-Dist: apache-airflow-providers-imap==3.9.0; extra == "frozen"
|
|
106
106
|
Requires-Dist: apache-airflow-providers-postgres==6.2.0; extra == "frozen"
|
|
107
107
|
Requires-Dist: apache-airflow-providers-smtp==2.1.0; extra == "frozen"
|
|
@@ -109,27 +109,27 @@ Requires-Dist: apache-airflow-providers-sqlite==4.1.0; extra == "frozen"
|
|
|
109
109
|
Requires-Dist: apispec==6.8.2; extra == "frozen"
|
|
110
110
|
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
111
111
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
112
|
-
Requires-Dist: asdf_standard==1.
|
|
112
|
+
Requires-Dist: asdf_standard==1.3.0; extra == "frozen"
|
|
113
113
|
Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
114
114
|
Requires-Dist: asgiref==3.8.1; extra == "frozen"
|
|
115
115
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
116
116
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
117
|
-
Requires-Dist: astropy-iers-data==0.2025.6.
|
|
117
|
+
Requires-Dist: astropy-iers-data==0.2025.6.23.0.39.50; extra == "frozen"
|
|
118
118
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
119
119
|
Requires-Dist: attrs==25.3.0; extra == "frozen"
|
|
120
120
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
121
121
|
Requires-Dist: billiard==4.2.1; extra == "frozen"
|
|
122
122
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
123
|
-
Requires-Dist: boto3==1.38.
|
|
124
|
-
Requires-Dist: botocore==1.38.
|
|
123
|
+
Requires-Dist: boto3==1.38.44; extra == "frozen"
|
|
124
|
+
Requires-Dist: botocore==1.38.44; extra == "frozen"
|
|
125
125
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
126
126
|
Requires-Dist: celery==5.5.3; extra == "frozen"
|
|
127
|
-
Requires-Dist: certifi==2025.
|
|
127
|
+
Requires-Dist: certifi==2025.6.15; extra == "frozen"
|
|
128
128
|
Requires-Dist: cffi==1.17.1; extra == "frozen"
|
|
129
129
|
Requires-Dist: charset-normalizer==3.4.2; extra == "frozen"
|
|
130
130
|
Requires-Dist: click==8.2.1; extra == "frozen"
|
|
131
131
|
Requires-Dist: click-didyoumean==0.3.1; extra == "frozen"
|
|
132
|
-
Requires-Dist: click-plugins==1.1.1; extra == "frozen"
|
|
132
|
+
Requires-Dist: click-plugins==1.1.1.2; extra == "frozen"
|
|
133
133
|
Requires-Dist: click-repl==0.3.0; extra == "frozen"
|
|
134
134
|
Requires-Dist: clickclick==20.10.2; extra == "frozen"
|
|
135
135
|
Requires-Dist: colorama==0.4.6; extra == "frozen"
|
|
@@ -138,15 +138,15 @@ Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
|
138
138
|
Requires-Dist: contourpy==1.3.2; extra == "frozen"
|
|
139
139
|
Requires-Dist: cron-descriptor==1.4.5; extra == "frozen"
|
|
140
140
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
141
|
-
Requires-Dist: cryptography==45.0.
|
|
141
|
+
Requires-Dist: cryptography==45.0.4; extra == "frozen"
|
|
142
142
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
143
143
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
144
144
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
145
145
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
146
146
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
147
|
-
Requires-Dist: dkist-processing-common==10.
|
|
147
|
+
Requires-Dist: dkist-processing-common==10.9.0; extra == "frozen"
|
|
148
148
|
Requires-Dist: dkist-processing-core==5.1.1; extra == "frozen"
|
|
149
|
-
Requires-Dist: dkist-processing-cryonirsp==1.
|
|
149
|
+
Requires-Dist: dkist-processing-cryonirsp==1.8.1; extra == "frozen"
|
|
150
150
|
Requires-Dist: dkist-processing-math==2.2.0; extra == "frozen"
|
|
151
151
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
152
152
|
Requires-Dist: dkist-service-configuration==2.2; extra == "frozen"
|
|
@@ -158,15 +158,14 @@ Requires-Dist: elastic-apm==6.23.0; extra == "frozen"
|
|
|
158
158
|
Requires-Dist: email_validator==2.2.0; extra == "frozen"
|
|
159
159
|
Requires-Dist: fastjsonschema==2.21.1; extra == "frozen"
|
|
160
160
|
Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
161
|
-
Requires-Dist: fonttools==4.58.
|
|
162
|
-
Requires-Dist: frozenlist==1.
|
|
161
|
+
Requires-Dist: fonttools==4.58.4; extra == "frozen"
|
|
162
|
+
Requires-Dist: frozenlist==1.7.0; extra == "frozen"
|
|
163
163
|
Requires-Dist: fsspec==2025.5.1; extra == "frozen"
|
|
164
|
-
Requires-Dist: globus-sdk==3.
|
|
164
|
+
Requires-Dist: globus-sdk==3.58.0; extra == "frozen"
|
|
165
165
|
Requires-Dist: google-re2==1.1.20240702; 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:
|
|
169
|
-
Requires-Dist: grpcio==1.72.1; extra == "frozen"
|
|
168
|
+
Requires-Dist: grpcio==1.73.0; extra == "frozen"
|
|
170
169
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
171
170
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
172
171
|
Requires-Dist: httpcore==1.0.9; extra == "frozen"
|
|
@@ -175,7 +174,7 @@ Requires-Dist: humanize==4.12.3; extra == "frozen"
|
|
|
175
174
|
Requires-Dist: idna==3.10; extra == "frozen"
|
|
176
175
|
Requires-Dist: imageio==2.37.0; extra == "frozen"
|
|
177
176
|
Requires-Dist: imageio-ffmpeg==0.6.0; extra == "frozen"
|
|
178
|
-
Requires-Dist: importlib_metadata==8.
|
|
177
|
+
Requires-Dist: importlib_metadata==8.7.0; extra == "frozen"
|
|
179
178
|
Requires-Dist: inflection==0.5.1; extra == "frozen"
|
|
180
179
|
Requires-Dist: itsdangerous==2.2.0; extra == "frozen"
|
|
181
180
|
Requires-Dist: jmespath==1.0.1; extra == "frozen"
|
|
@@ -187,7 +186,7 @@ Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
|
187
186
|
Requires-Dist: largestinteriorrectangle==0.2.1; extra == "frozen"
|
|
188
187
|
Requires-Dist: lazy-object-proxy==1.11.0; extra == "frozen"
|
|
189
188
|
Requires-Dist: lazy_loader==0.4; extra == "frozen"
|
|
190
|
-
Requires-Dist: limits==5.
|
|
189
|
+
Requires-Dist: limits==5.4.0; extra == "frozen"
|
|
191
190
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
192
191
|
Requires-Dist: llvmlite==0.44.0; extra == "frozen"
|
|
193
192
|
Requires-Dist: lmfit==1.3.3; extra == "frozen"
|
|
@@ -203,23 +202,23 @@ Requires-Dist: mdurl==0.1.2; extra == "frozen"
|
|
|
203
202
|
Requires-Dist: methodtools==0.4.7; extra == "frozen"
|
|
204
203
|
Requires-Dist: more-itertools==10.7.0; extra == "frozen"
|
|
205
204
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
206
|
-
Requires-Dist: multidict==6.
|
|
205
|
+
Requires-Dist: multidict==6.5.1; extra == "frozen"
|
|
207
206
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
208
207
|
Requires-Dist: networkx==3.5; extra == "frozen"
|
|
209
208
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
210
209
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
211
210
|
Requires-Dist: object-clerk==0.1.2; extra == "frozen"
|
|
212
|
-
Requires-Dist: opentelemetry-api==1.
|
|
213
|
-
Requires-Dist: opentelemetry-exporter-otlp==1.
|
|
214
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.
|
|
215
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.
|
|
216
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.
|
|
217
|
-
Requires-Dist: opentelemetry-proto==1.
|
|
218
|
-
Requires-Dist: opentelemetry-sdk==1.
|
|
219
|
-
Requires-Dist: opentelemetry-semantic-conventions==0.
|
|
211
|
+
Requires-Dist: opentelemetry-api==1.34.1; extra == "frozen"
|
|
212
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.34.1; extra == "frozen"
|
|
213
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.34.1; extra == "frozen"
|
|
214
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.34.1; extra == "frozen"
|
|
215
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.34.1; extra == "frozen"
|
|
216
|
+
Requires-Dist: opentelemetry-proto==1.34.1; extra == "frozen"
|
|
217
|
+
Requires-Dist: opentelemetry-sdk==1.34.1; extra == "frozen"
|
|
218
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.55b1; extra == "frozen"
|
|
220
219
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
221
220
|
Requires-Dist: packaging==25.0; extra == "frozen"
|
|
222
|
-
Requires-Dist: pandas==2.
|
|
221
|
+
Requires-Dist: pandas==2.3.0; extra == "frozen"
|
|
223
222
|
Requires-Dist: parfive==2.2.0; extra == "frozen"
|
|
224
223
|
Requires-Dist: pathspec==0.12.1; extra == "frozen"
|
|
225
224
|
Requires-Dist: pendulum==3.1.0; extra == "frozen"
|
|
@@ -232,26 +231,26 @@ Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
|
232
231
|
Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
233
232
|
Requires-Dist: prometheus_client==0.22.1; extra == "frozen"
|
|
234
233
|
Requires-Dist: prompt_toolkit==3.0.51; extra == "frozen"
|
|
235
|
-
Requires-Dist: propcache==0.3.
|
|
234
|
+
Requires-Dist: propcache==0.3.2; extra == "frozen"
|
|
236
235
|
Requires-Dist: protobuf==5.29.5; extra == "frozen"
|
|
237
236
|
Requires-Dist: psutil==7.0.0; extra == "frozen"
|
|
238
237
|
Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
|
|
239
238
|
Requires-Dist: py==1.11.0; extra == "frozen"
|
|
240
239
|
Requires-Dist: pycparser==2.22; extra == "frozen"
|
|
241
|
-
Requires-Dist: pydantic==2.11.
|
|
242
|
-
Requires-Dist: pydantic-settings==2.
|
|
240
|
+
Requires-Dist: pydantic==2.11.7; extra == "frozen"
|
|
241
|
+
Requires-Dist: pydantic-settings==2.10.1; extra == "frozen"
|
|
243
242
|
Requires-Dist: pydantic_core==2.33.2; extra == "frozen"
|
|
244
243
|
Requires-Dist: pyerfa==2.0.1.5; extra == "frozen"
|
|
245
244
|
Requires-Dist: pyparsing==3.2.3; extra == "frozen"
|
|
246
245
|
Requires-Dist: python-daemon==3.1.2; extra == "frozen"
|
|
247
246
|
Requires-Dist: python-dateutil==2.9.0.post0; extra == "frozen"
|
|
248
|
-
Requires-Dist: python-dotenv==1.1.
|
|
247
|
+
Requires-Dist: python-dotenv==1.1.1; extra == "frozen"
|
|
249
248
|
Requires-Dist: python-nvd3==0.16.0; extra == "frozen"
|
|
250
249
|
Requires-Dist: python-slugify==8.0.4; extra == "frozen"
|
|
251
250
|
Requires-Dist: pytz==2025.2; extra == "frozen"
|
|
252
251
|
Requires-Dist: redis==4.6.0; extra == "frozen"
|
|
253
252
|
Requires-Dist: referencing==0.36.2; extra == "frozen"
|
|
254
|
-
Requires-Dist: requests==2.32.
|
|
253
|
+
Requires-Dist: requests==2.32.4; extra == "frozen"
|
|
255
254
|
Requires-Dist: requests-toolbelt==1.0.0; extra == "frozen"
|
|
256
255
|
Requires-Dist: retry==0.9.2; extra == "frozen"
|
|
257
256
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
@@ -263,7 +262,7 @@ Requires-Dist: scikit-image==0.25.2; extra == "frozen"
|
|
|
263
262
|
Requires-Dist: scipy==1.15.3; extra == "frozen"
|
|
264
263
|
Requires-Dist: semantic-version==2.10.0; extra == "frozen"
|
|
265
264
|
Requires-Dist: setproctitle==1.3.6; extra == "frozen"
|
|
266
|
-
Requires-Dist: setuptools==
|
|
265
|
+
Requires-Dist: setuptools==75.6.0; extra == "frozen"
|
|
267
266
|
Requires-Dist: six==1.17.0; extra == "frozen"
|
|
268
267
|
Requires-Dist: sniffio==1.3.1; extra == "frozen"
|
|
269
268
|
Requires-Dist: sqids==0.5.1; extra == "frozen"
|
|
@@ -274,7 +273,7 @@ Requires-Dist: talus==1.1.0; extra == "frozen"
|
|
|
274
273
|
Requires-Dist: tenacity==9.1.2; extra == "frozen"
|
|
275
274
|
Requires-Dist: termcolor==3.1.0; extra == "frozen"
|
|
276
275
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
277
|
-
Requires-Dist: tifffile==2025.6.
|
|
276
|
+
Requires-Dist: tifffile==2025.6.11; extra == "frozen"
|
|
278
277
|
Requires-Dist: tornado==6.5.1; extra == "frozen"
|
|
279
278
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
280
279
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
@@ -284,15 +283,15 @@ Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
|
284
283
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
285
284
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
286
285
|
Requires-Dist: universal_pathlib==0.2.6; extra == "frozen"
|
|
287
|
-
Requires-Dist: urllib3==2.
|
|
286
|
+
Requires-Dist: urllib3==2.5.0; extra == "frozen"
|
|
288
287
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
289
288
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
290
289
|
Requires-Dist: wcwidth==0.2.13; extra == "frozen"
|
|
291
290
|
Requires-Dist: wirerope==1.0.0; extra == "frozen"
|
|
292
291
|
Requires-Dist: wrapt==1.17.2; extra == "frozen"
|
|
293
292
|
Requires-Dist: yamale==6.0.0; extra == "frozen"
|
|
294
|
-
Requires-Dist: yarl==1.20.
|
|
295
|
-
Requires-Dist: zipp==3.
|
|
293
|
+
Requires-Dist: yarl==1.20.1; extra == "frozen"
|
|
294
|
+
Requires-Dist: zipp==3.23.0; extra == "frozen"
|
|
296
295
|
|
|
297
296
|
dkist-processing-cryonirsp
|
|
298
297
|
==========================
|
{dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
changelog/190.misc.rst,sha256=Ui1HIOqxD8Sq5JvBIOZei90X9d2Wh7G3TyaVbLlhuR0,73
|
|
3
2
|
dkist_processing_cryonirsp/__init__.py,sha256=Z6-kB7fXXUI-F7Vz1HnEaja2h8qgH9IZExRl1lUxvZg,350
|
|
4
3
|
dkist_processing_cryonirsp/config.py,sha256=xNkUNJ1BeBxJX881mTCIEbirZlD5_5txpV1QqkbfRM0,507
|
|
5
4
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -48,7 +47,7 @@ dkist_processing_cryonirsp/tasks/sp_solar_gain.py,sha256=d4UABsMxyzCMduVxptHY_TC
|
|
|
48
47
|
dkist_processing_cryonirsp/tasks/write_l1.py,sha256=ebZCWr5i6LUXJ38oXSq22zRKNP7sdBuxbJAEV5oJM84,41435
|
|
49
48
|
dkist_processing_cryonirsp/tasks/mixin/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
50
49
|
dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=rcKmckBJkoExcX0XW1i3OZzuMu1i7tX5Hgwy15chU50,6566
|
|
51
|
-
dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=
|
|
50
|
+
dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=EbU3VQ_1QLbENHO_SfhWc7d573UwbofKU-PpbfBPKI8,11620
|
|
52
51
|
dkist_processing_cryonirsp/tests/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
53
52
|
dkist_processing_cryonirsp/tests/conftest.py,sha256=oeZw5KXlvm_UasgFc3uzxD2Z2uTg5-rJu7Do9wIKJKU,18131
|
|
54
53
|
dkist_processing_cryonirsp/tests/header_models.py,sha256=klif5-UzTzvAqpj5cJCdLtyodJZS_awhy53NUHyucTw,20601
|
|
@@ -81,7 +80,7 @@ dkist_processing_cryonirsp/tests/local_trial_workflows/__init__.py,sha256=47DEQp
|
|
|
81
80
|
dkist_processing_cryonirsp/tests/local_trial_workflows/l0_cals_only.py,sha256=nWs3Qg3f4DHqN_6JBKDaR5q9TncgR_PeRWw3_bUBZWA,20110
|
|
82
81
|
dkist_processing_cryonirsp/tests/local_trial_workflows/l0_to_l1.py,sha256=KaxxMeo_sOMWgekNVkPsTJt6XWU2Ov7rnMkBtG_sKcc,23938
|
|
83
82
|
dkist_processing_cryonirsp/tests/local_trial_workflows/linearize_only.py,sha256=kl9yrE1EbgxNn__x4q0WYoZIvS8zefcOPbQQdxB4_ZE,3280
|
|
84
|
-
dkist_processing_cryonirsp/tests/local_trial_workflows/local_trial_helpers.py,sha256=
|
|
83
|
+
dkist_processing_cryonirsp/tests/local_trial_workflows/local_trial_helpers.py,sha256=FteYoLXR6BW3MBb-Wc6-O8mRj26U2U6T95_itslDhEo,20966
|
|
85
84
|
dkist_processing_cryonirsp/workflows/__init__.py,sha256=iEbV3oiKmkfmdZjeNJxqw08IIZnYSroq-2b-ARpkLFQ,112
|
|
86
85
|
dkist_processing_cryonirsp/workflows/ci_l0_processing.py,sha256=T-BOvDDWHzs5BDH5ctSBjzGgD6Xez52AnDXsH5_7Bms,3788
|
|
87
86
|
dkist_processing_cryonirsp/workflows/sp_l0_processing.py,sha256=A74av8E8mL9WzI4vWI2GbhVrRFQ7JCMlGAioEjXkkCU,4219
|
|
@@ -106,7 +105,7 @@ docs/requirements_table.rst,sha256=FaqSag9kPi77gWPhzeo_tFEhRFjb3qUuNqqQe1K76NM,2
|
|
|
106
105
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
107
106
|
docs/sp_science_calibration.rst,sha256=XL-H_hyzqwPHYNW3j-muItX_hGqMi-gjFRQbHp60LlU,2997
|
|
108
107
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
109
|
-
dkist_processing_cryonirsp-1.
|
|
110
|
-
dkist_processing_cryonirsp-1.
|
|
111
|
-
dkist_processing_cryonirsp-1.
|
|
112
|
-
dkist_processing_cryonirsp-1.
|
|
108
|
+
dkist_processing_cryonirsp-1.8.1.dist-info/METADATA,sha256=e2MqEKO96OvSkYnli-X4hjhij5dvNr7AOJ79UAsrmE8,21941
|
|
109
|
+
dkist_processing_cryonirsp-1.8.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
110
|
+
dkist_processing_cryonirsp-1.8.1.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
111
|
+
dkist_processing_cryonirsp-1.8.1.dist-info/RECORD,,
|
changelog/190.misc.rst
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Remove use of input dataset mixin imported from dkist-processing-common.
|
{dkist_processing_cryonirsp-1.7.7rc1.dist-info → dkist_processing_cryonirsp-1.8.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|