dkist-processing-cryonirsp 1.5.5__py3-none-any.whl → 1.6.0rc1__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/191.misc.rst +1 -0
- changelog/192.misc.rst +1 -0
- dkist_processing_cryonirsp/tasks/write_l1.py +4 -5
- {dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/METADATA +51 -52
- {dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/RECORD +7 -5
- {dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/WHEEL +0 -0
- {dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/top_level.txt +0 -0
changelog/191.misc.rst
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Add missing build dependency specifications.
|
changelog/192.misc.rst
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Update dkist-processing-common to only remove level 0 header keys from the level 1 files.
|
|
@@ -141,7 +141,6 @@ class CryonirspWriteL1Frame(WriteL1Frame, ABC, InputDatasetMixin):
|
|
|
141
141
|
header[f"DTYPE{axis_num}"] = "TEMPORAL"
|
|
142
142
|
header[f"DPNAME{axis_num}"] = "measurement number"
|
|
143
143
|
header[f"DWNAME{axis_num}"] = "time"
|
|
144
|
-
header[f"CNAME{axis_num}"] = "time"
|
|
145
144
|
header[f"DUNIT{axis_num}"] = "s"
|
|
146
145
|
# DINDEX and CNCMEAS are both one-based
|
|
147
146
|
header[f"DINDEX{axis_num}"] = header["CNCMEAS"]
|
|
@@ -159,7 +158,6 @@ class CryonirspWriteL1Frame(WriteL1Frame, ABC, InputDatasetMixin):
|
|
|
159
158
|
header[f"DTYPE{axis_num}"] = "TEMPORAL"
|
|
160
159
|
header[f"DPNAME{axis_num}"] = "map scan number"
|
|
161
160
|
header[f"DWNAME{axis_num}"] = "time"
|
|
162
|
-
header[f"CNAME{axis_num}"] = "time"
|
|
163
161
|
header[f"DUNIT{axis_num}"] = "s"
|
|
164
162
|
# Temporal position in dataset
|
|
165
163
|
# DINDEX and CNMAP are both one-based
|
|
@@ -175,7 +173,6 @@ class CryonirspWriteL1Frame(WriteL1Frame, ABC, InputDatasetMixin):
|
|
|
175
173
|
header[f"DTYPE{axis_num}"] = "STOKES"
|
|
176
174
|
header[f"DPNAME{axis_num}"] = "polarization state"
|
|
177
175
|
header[f"DWNAME{axis_num}"] = "polarization state"
|
|
178
|
-
header[f"CNAME{axis_num}"] = "polarization state"
|
|
179
176
|
header[f"DUNIT{axis_num}"] = ""
|
|
180
177
|
# Stokes position in dataset - stokes axis goes from 1-4
|
|
181
178
|
header[f"DINDEX{axis_num}"] = self.constants.stokes_params.index(stokes.upper()) + 1
|
|
@@ -518,7 +515,8 @@ class CIWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
518
515
|
header[f"DTYPE{axis_num}"] = "TEMPORAL"
|
|
519
516
|
header[f"DPNAME{axis_num}"] = "scan step number"
|
|
520
517
|
header[f"DWNAME{axis_num}"] = "time"
|
|
521
|
-
|
|
518
|
+
if axis_num == 3:
|
|
519
|
+
header[f"CNAME{axis_num}"] = "time"
|
|
522
520
|
header[f"DUNIT{axis_num}"] = "s"
|
|
523
521
|
# DINDEX and CNCURSCN are both one-based
|
|
524
522
|
header[f"DINDEX{axis_num}"] = header["CNCURSCN"]
|
|
@@ -801,7 +799,8 @@ class SPWriteL1Frame(CryonirspWriteL1Frame):
|
|
|
801
799
|
header[f"DTYPE{axis_num}"] = "SPATIAL"
|
|
802
800
|
header[f"DPNAME{axis_num}"] = "scan step number"
|
|
803
801
|
header[f"DWNAME{axis_num}"] = "helioprojective longitude"
|
|
804
|
-
|
|
802
|
+
if axis_num == 3:
|
|
803
|
+
header[f"CNAME{axis_num}"] = "helioprojective longitude"
|
|
805
804
|
# NB: CUNIT axis number is hard coded here
|
|
806
805
|
header[f"DUNIT{axis_num}"] = header[f"CUNIT3"]
|
|
807
806
|
# DINDEX and CNCURSCN are both one-based
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-cryonirsp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0rc1
|
|
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
|
|
@@ -15,9 +15,9 @@ Requires-Python: >=3.11
|
|
|
15
15
|
Description-Content-Type: text/x-rst
|
|
16
16
|
Requires-Dist: Pillow==10.3.0
|
|
17
17
|
Requires-Dist: astropy==6.1.5
|
|
18
|
-
Requires-Dist: dkist-fits-specifications==4.
|
|
19
|
-
Requires-Dist: dkist-header-validator==5.
|
|
20
|
-
Requires-Dist: dkist-processing-common==10.
|
|
18
|
+
Requires-Dist: dkist-fits-specifications==4.13.0
|
|
19
|
+
Requires-Dist: dkist-header-validator==5.2.1
|
|
20
|
+
Requires-Dist: dkist-processing-common==10.7.1rc1
|
|
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.7.
|
|
46
|
+
Requires-Dist: dkist-inventory==1.7.2; extra == "inventory"
|
|
47
47
|
Provides-Extra: asdf
|
|
48
48
|
Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
|
|
49
|
-
Requires-Dist: dkist-inventory[asdf]==1.7.
|
|
49
|
+
Requires-Dist: dkist-inventory[asdf]==1.7.2; 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.7.
|
|
55
|
+
Requires-Dist: dkist-inventory>=1.7.2; extra == "grogu"
|
|
56
56
|
Provides-Extra: docs
|
|
57
57
|
Requires-Dist: sphinx; extra == "docs"
|
|
58
58
|
Requires-Dist: sphinx-astropy; extra == "docs"
|
|
@@ -75,7 +75,7 @@ Requires-Dist: Flask-SQLAlchemy==2.5.1; extra == "frozen"
|
|
|
75
75
|
Requires-Dist: Flask-Session==0.5.0; extra == "frozen"
|
|
76
76
|
Requires-Dist: Flask-WTF==1.2.2; extra == "frozen"
|
|
77
77
|
Requires-Dist: Jinja2==3.1.6; extra == "frozen"
|
|
78
|
-
Requires-Dist: Mako==1.3.
|
|
78
|
+
Requires-Dist: Mako==1.3.10; extra == "frozen"
|
|
79
79
|
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"
|
|
@@ -86,45 +86,44 @@ 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.25.1; extra == "frozen"
|
|
90
90
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
91
|
-
Requires-Dist: aiohttp==3.11.
|
|
91
|
+
Requires-Dist: aiohttp==3.11.16; extra == "frozen"
|
|
92
92
|
Requires-Dist: aiosignal==1.3.2; extra == "frozen"
|
|
93
|
-
Requires-Dist: aiosqlite==0.21.0; extra == "frozen"
|
|
94
93
|
Requires-Dist: alembic==1.15.2; extra == "frozen"
|
|
95
94
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
96
95
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
97
96
|
Requires-Dist: anyio==4.9.0; extra == "frozen"
|
|
98
97
|
Requires-Dist: apache-airflow==2.10.5; extra == "frozen"
|
|
99
|
-
Requires-Dist: apache-airflow-providers-celery==3.10.
|
|
98
|
+
Requires-Dist: apache-airflow-providers-celery==3.10.6; extra == "frozen"
|
|
100
99
|
Requires-Dist: apache-airflow-providers-common-compat==1.6.0; extra == "frozen"
|
|
101
|
-
Requires-Dist: apache-airflow-providers-common-io==1.5.
|
|
102
|
-
Requires-Dist: apache-airflow-providers-common-sql==1.
|
|
100
|
+
Requires-Dist: apache-airflow-providers-common-io==1.5.3; extra == "frozen"
|
|
101
|
+
Requires-Dist: apache-airflow-providers-common-sql==1.25.0; extra == "frozen"
|
|
103
102
|
Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
|
|
104
103
|
Requires-Dist: apache-airflow-providers-ftp==3.12.3; extra == "frozen"
|
|
105
104
|
Requires-Dist: apache-airflow-providers-http==5.2.1; extra == "frozen"
|
|
106
105
|
Requires-Dist: apache-airflow-providers-imap==3.8.3; extra == "frozen"
|
|
107
|
-
Requires-Dist: apache-airflow-providers-postgres==6.1.
|
|
106
|
+
Requires-Dist: apache-airflow-providers-postgres==6.1.2; extra == "frozen"
|
|
108
107
|
Requires-Dist: apache-airflow-providers-smtp==2.0.2; extra == "frozen"
|
|
109
|
-
Requires-Dist: apache-airflow-providers-sqlite==4.0.
|
|
108
|
+
Requires-Dist: apache-airflow-providers-sqlite==4.0.2; extra == "frozen"
|
|
110
109
|
Requires-Dist: apispec==6.8.1; extra == "frozen"
|
|
111
|
-
Requires-Dist: argcomplete==3.6.
|
|
110
|
+
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
112
111
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
113
112
|
Requires-Dist: asdf_standard==1.1.1; extra == "frozen"
|
|
114
113
|
Requires-Dist: asdf_transform_schemas==0.5.0; extra == "frozen"
|
|
115
114
|
Requires-Dist: asgiref==3.8.1; extra == "frozen"
|
|
116
115
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
117
116
|
Requires-Dist: astropy==6.1.5; extra == "frozen"
|
|
118
|
-
Requires-Dist: astropy-iers-data==0.2025.
|
|
117
|
+
Requires-Dist: astropy-iers-data==0.2025.4.14.0.37.22; extra == "frozen"
|
|
119
118
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
120
119
|
Requires-Dist: attrs==25.3.0; extra == "frozen"
|
|
121
120
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
122
121
|
Requires-Dist: billiard==4.2.1; extra == "frozen"
|
|
123
122
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
124
|
-
Requires-Dist: boto3==1.37.
|
|
125
|
-
Requires-Dist: botocore==1.37.
|
|
123
|
+
Requires-Dist: boto3==1.37.34; extra == "frozen"
|
|
124
|
+
Requires-Dist: botocore==1.37.34; extra == "frozen"
|
|
126
125
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
127
|
-
Requires-Dist: celery==5.5.
|
|
126
|
+
Requires-Dist: celery==5.5.1; extra == "frozen"
|
|
128
127
|
Requires-Dist: certifi==2025.1.31; extra == "frozen"
|
|
129
128
|
Requires-Dist: cffi==1.17.1; extra == "frozen"
|
|
130
129
|
Requires-Dist: charset-normalizer==3.4.1; extra == "frozen"
|
|
@@ -136,40 +135,40 @@ Requires-Dist: clickclick==20.10.2; extra == "frozen"
|
|
|
136
135
|
Requires-Dist: colorama==0.4.6; extra == "frozen"
|
|
137
136
|
Requires-Dist: colorlog==6.9.0; extra == "frozen"
|
|
138
137
|
Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
139
|
-
Requires-Dist: contourpy==1.3.
|
|
138
|
+
Requires-Dist: contourpy==1.3.2; extra == "frozen"
|
|
140
139
|
Requires-Dist: cron-descriptor==1.4.5; extra == "frozen"
|
|
141
140
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
142
141
|
Requires-Dist: cryptography==44.0.2; extra == "frozen"
|
|
143
142
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
144
143
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
145
144
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
146
|
-
Requires-Dist: dill==0.
|
|
147
|
-
Requires-Dist: dkist-header-validator==5.
|
|
148
|
-
Requires-Dist: dkist-processing-common==10.
|
|
145
|
+
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
146
|
+
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
147
|
+
Requires-Dist: dkist-processing-common==10.7.1rc1; extra == "frozen"
|
|
149
148
|
Requires-Dist: dkist-processing-core==5.1.0; extra == "frozen"
|
|
150
|
-
Requires-Dist: dkist-processing-cryonirsp==1.
|
|
149
|
+
Requires-Dist: dkist-processing-cryonirsp==1.6.0rc1; extra == "frozen"
|
|
151
150
|
Requires-Dist: dkist-processing-math==2.2.0; extra == "frozen"
|
|
152
151
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
153
152
|
Requires-Dist: dkist-service-configuration==2.2; extra == "frozen"
|
|
154
153
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
155
|
-
Requires-Dist: dkist_fits_specifications==4.
|
|
154
|
+
Requires-Dist: dkist_fits_specifications==4.13.0; extra == "frozen"
|
|
156
155
|
Requires-Dist: dnspython==2.7.0; extra == "frozen"
|
|
157
156
|
Requires-Dist: ecs-logging==2.2.0; extra == "frozen"
|
|
158
157
|
Requires-Dist: elastic-apm==6.23.0; extra == "frozen"
|
|
159
158
|
Requires-Dist: email_validator==2.2.0; extra == "frozen"
|
|
160
159
|
Requires-Dist: fastjsonschema==2.21.1; extra == "frozen"
|
|
161
160
|
Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
162
|
-
Requires-Dist: fonttools==4.
|
|
161
|
+
Requires-Dist: fonttools==4.57.0; extra == "frozen"
|
|
163
162
|
Requires-Dist: frozenlist==1.5.0; extra == "frozen"
|
|
164
163
|
Requires-Dist: fsspec==2025.3.2; extra == "frozen"
|
|
165
|
-
Requires-Dist: globus-sdk==3.
|
|
164
|
+
Requires-Dist: globus-sdk==3.54.0; extra == "frozen"
|
|
166
165
|
Requires-Dist: google-re2==1.1.20240702; extra == "frozen"
|
|
167
|
-
Requires-Dist: googleapis-common-protos==1.
|
|
166
|
+
Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
|
|
168
167
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
169
168
|
Requires-Dist: grpcio==1.71.0; extra == "frozen"
|
|
170
169
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
171
170
|
Requires-Dist: h11==0.14.0; extra == "frozen"
|
|
172
|
-
Requires-Dist: httpcore==1.0.
|
|
171
|
+
Requires-Dist: httpcore==1.0.8; extra == "frozen"
|
|
173
172
|
Requires-Dist: httpx==0.28.1; extra == "frozen"
|
|
174
173
|
Requires-Dist: humanize==4.12.2; extra == "frozen"
|
|
175
174
|
Requires-Dist: idna==3.10; extra == "frozen"
|
|
@@ -183,11 +182,11 @@ Requires-Dist: jsonschema==4.23.0; extra == "frozen"
|
|
|
183
182
|
Requires-Dist: jsonschema-specifications==2024.10.1; extra == "frozen"
|
|
184
183
|
Requires-Dist: jupyter_core==5.7.2; extra == "frozen"
|
|
185
184
|
Requires-Dist: kiwisolver==1.4.8; extra == "frozen"
|
|
186
|
-
Requires-Dist: kombu==5.5.
|
|
185
|
+
Requires-Dist: kombu==5.5.3; extra == "frozen"
|
|
187
186
|
Requires-Dist: largestinteriorrectangle==0.2.0; extra == "frozen"
|
|
188
|
-
Requires-Dist: lazy-object-proxy==1.
|
|
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==
|
|
189
|
+
Requires-Dist: limits==5.0.0; extra == "frozen"
|
|
191
190
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
192
191
|
Requires-Dist: llvmlite==0.42.0; extra == "frozen"
|
|
193
192
|
Requires-Dist: lmfit==1.3.3; extra == "frozen"
|
|
@@ -203,20 +202,20 @@ 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.6.0; extra == "frozen"
|
|
205
204
|
Requires-Dist: moviepy==2.0.0; extra == "frozen"
|
|
206
|
-
Requires-Dist: multidict==6.3
|
|
205
|
+
Requires-Dist: multidict==6.4.3; extra == "frozen"
|
|
207
206
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
208
207
|
Requires-Dist: networkx==3.4.2; extra == "frozen"
|
|
209
208
|
Requires-Dist: numba==0.59.1; extra == "frozen"
|
|
210
209
|
Requires-Dist: numpy==1.26.4; extra == "frozen"
|
|
211
210
|
Requires-Dist: object-clerk==0.1.1; 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.32.1; extra == "frozen"
|
|
212
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.32.1; extra == "frozen"
|
|
213
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.32.1; extra == "frozen"
|
|
214
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.32.1; extra == "frozen"
|
|
215
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.32.1; extra == "frozen"
|
|
216
|
+
Requires-Dist: opentelemetry-proto==1.32.1; extra == "frozen"
|
|
217
|
+
Requires-Dist: opentelemetry-sdk==1.32.1; extra == "frozen"
|
|
218
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.53b1; extra == "frozen"
|
|
220
219
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
221
220
|
Requires-Dist: packaging==24.2; extra == "frozen"
|
|
222
221
|
Requires-Dist: pandas==2.2.3; extra == "frozen"
|
|
@@ -229,18 +228,18 @@ Requires-Dist: pip==25.0.1; extra == "frozen"
|
|
|
229
228
|
Requires-Dist: platformdirs==4.3.7; extra == "frozen"
|
|
230
229
|
Requires-Dist: pluggy==1.5.0; extra == "frozen"
|
|
231
230
|
Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
232
|
-
Requires-Dist: proglog==0.1.
|
|
231
|
+
Requires-Dist: proglog==0.1.11; extra == "frozen"
|
|
233
232
|
Requires-Dist: prometheus_client==0.21.1; extra == "frozen"
|
|
234
|
-
Requires-Dist: prompt_toolkit==3.0.
|
|
233
|
+
Requires-Dist: prompt_toolkit==3.0.51; extra == "frozen"
|
|
235
234
|
Requires-Dist: propcache==0.3.1; extra == "frozen"
|
|
236
235
|
Requires-Dist: protobuf==5.29.4; 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.
|
|
240
|
+
Requires-Dist: pydantic==2.11.3; extra == "frozen"
|
|
242
241
|
Requires-Dist: pydantic-settings==2.8.1; extra == "frozen"
|
|
243
|
-
Requires-Dist: pydantic_core==2.33.
|
|
242
|
+
Requires-Dist: pydantic_core==2.33.1; 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"
|
|
@@ -271,8 +270,8 @@ Requires-Dist: sqlparse==0.5.3; extra == "frozen"
|
|
|
271
270
|
Requires-Dist: sunpy==5.1.3; extra == "frozen"
|
|
272
271
|
Requires-Dist: tabulate==0.9.0; extra == "frozen"
|
|
273
272
|
Requires-Dist: talus==1.1.0; extra == "frozen"
|
|
274
|
-
Requires-Dist: tenacity==9.
|
|
275
|
-
Requires-Dist: termcolor==3.0.
|
|
273
|
+
Requires-Dist: tenacity==9.1.2; extra == "frozen"
|
|
274
|
+
Requires-Dist: termcolor==3.0.1; extra == "frozen"
|
|
276
275
|
Requires-Dist: text-unidecode==1.3; extra == "frozen"
|
|
277
276
|
Requires-Dist: tifffile==2025.3.30; extra == "frozen"
|
|
278
277
|
Requires-Dist: time-machine==2.16.0; extra == "frozen"
|
|
@@ -280,19 +279,19 @@ Requires-Dist: tornado==6.4.2; extra == "frozen"
|
|
|
280
279
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
281
280
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
282
281
|
Requires-Dist: typing-inspection==0.4.0; extra == "frozen"
|
|
283
|
-
Requires-Dist: typing_extensions==4.13.
|
|
282
|
+
Requires-Dist: typing_extensions==4.13.2; extra == "frozen"
|
|
284
283
|
Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
285
284
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
286
285
|
Requires-Dist: uncertainties==3.2.2; extra == "frozen"
|
|
287
286
|
Requires-Dist: universal_pathlib==0.2.6; extra == "frozen"
|
|
288
|
-
Requires-Dist: urllib3==2.
|
|
287
|
+
Requires-Dist: urllib3==2.4.0; extra == "frozen"
|
|
289
288
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
290
289
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
291
290
|
Requires-Dist: wcwidth==0.2.13; extra == "frozen"
|
|
292
291
|
Requires-Dist: wirerope==1.0.0; extra == "frozen"
|
|
293
292
|
Requires-Dist: wrapt==1.17.2; extra == "frozen"
|
|
294
293
|
Requires-Dist: yamale==6.0.0; extra == "frozen"
|
|
295
|
-
Requires-Dist: yarl==1.
|
|
294
|
+
Requires-Dist: yarl==1.19.0; extra == "frozen"
|
|
296
295
|
Requires-Dist: zipp==3.21.0; extra == "frozen"
|
|
297
296
|
|
|
298
297
|
dkist-processing-cryonirsp
|
{dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
changelog/191.misc.rst,sha256=90n6qn9TkO4CDJfHwBPJG3SEc7wghjCkK6vF37T9rys,45
|
|
3
|
+
changelog/192.misc.rst,sha256=xdelWmoVN6tyWPsoGTigfOrsT84e7LJmPrfgqBe7YZs,90
|
|
2
4
|
dkist_processing_cryonirsp/__init__.py,sha256=Z6-kB7fXXUI-F7Vz1HnEaja2h8qgH9IZExRl1lUxvZg,350
|
|
3
5
|
dkist_processing_cryonirsp/config.py,sha256=xNkUNJ1BeBxJX881mTCIEbirZlD5_5txpV1QqkbfRM0,507
|
|
4
6
|
dkist_processing_cryonirsp/codecs/__init__.py,sha256=du1iitvsudSSOMENSywXmXSLOlvIocJsPbvfEcyqFNc,159
|
|
@@ -44,7 +46,7 @@ dkist_processing_cryonirsp/tasks/sp_dispersion_axis_correction.py,sha256=ZfUpsij
|
|
|
44
46
|
dkist_processing_cryonirsp/tasks/sp_geometric.py,sha256=_M_e_blz4mKDIUWSasonnOzbZ6EUbHp9pAZXQx4zY7U,24387
|
|
45
47
|
dkist_processing_cryonirsp/tasks/sp_science.py,sha256=QWyAEkXYamAcWxi62-tVD6ptuQ6vt8yIzuCKzCIYW20,13643
|
|
46
48
|
dkist_processing_cryonirsp/tasks/sp_solar_gain.py,sha256=d4UABsMxyzCMduVxptHY_TCGqS-l-W5iuhW7HJwVPkA,21024
|
|
47
|
-
dkist_processing_cryonirsp/tasks/write_l1.py,sha256=
|
|
49
|
+
dkist_processing_cryonirsp/tasks/write_l1.py,sha256=7h3_Zg8QraUN0CEbiHJaOdtvrAK9s9lE7yD5E7-w32o,41371
|
|
48
50
|
dkist_processing_cryonirsp/tasks/mixin/__init__.py,sha256=m6UekKftTahNJ3W5K3mZSz4Y4ZZpHRxF_ZAxuaKYL7o,12
|
|
49
51
|
dkist_processing_cryonirsp/tasks/mixin/corrections.py,sha256=rcKmckBJkoExcX0XW1i3OZzuMu1i7tX5Hgwy15chU50,6566
|
|
50
52
|
dkist_processing_cryonirsp/tasks/mixin/shift_measurements.py,sha256=7ToSy9uOJ_JrFfd-X225wqW_laq4xoRJkBiAPanfb_g,11225
|
|
@@ -105,7 +107,7 @@ docs/requirements_table.rst,sha256=FaqSag9kPi77gWPhzeo_tFEhRFjb3qUuNqqQe1K76NM,2
|
|
|
105
107
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
106
108
|
docs/sp_science_calibration.rst,sha256=fHBOZ2cqySxLjNi737KfynlmHZy9W4EwvuzxnyjDNvk,2597
|
|
107
109
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
108
|
-
dkist_processing_cryonirsp-1.
|
|
109
|
-
dkist_processing_cryonirsp-1.
|
|
110
|
-
dkist_processing_cryonirsp-1.
|
|
111
|
-
dkist_processing_cryonirsp-1.
|
|
110
|
+
dkist_processing_cryonirsp-1.6.0rc1.dist-info/METADATA,sha256=g2guqafJU3WIRgGP3FOTST2cloFS4umjinIStQ-ooPo,22010
|
|
111
|
+
dkist_processing_cryonirsp-1.6.0rc1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
112
|
+
dkist_processing_cryonirsp-1.6.0rc1.dist-info/top_level.txt,sha256=Sm9b1ddKnsF9Bh3mqDOct1Sm7k8I9aN7vGHgpmu-MlQ,51
|
|
113
|
+
dkist_processing_cryonirsp-1.6.0rc1.dist-info/RECORD,,
|
{dkist_processing_cryonirsp-1.5.5.dist-info → dkist_processing_cryonirsp-1.6.0rc1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|