dkist-processing-dlnirsp 0.32.5__py3-none-any.whl → 0.32.7__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.
- dkist_processing_dlnirsp/tests/test_trial_create_quality_report.py +1 -1
- dkist_processing_dlnirsp/workflows/l0_processing.py +5 -2
- dkist_processing_dlnirsp/workflows/trial_workflow.py +3 -1
- {dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/METADATA +55 -51
- {dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/RECORD +8 -8
- {dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/WHEEL +0 -0
- {dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/entry_points.txt +0 -0
- {dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/top_level.txt +0 -0
|
@@ -47,7 +47,7 @@ def create_trial_quality_report_task(
|
|
|
47
47
|
task.scratch = WorkflowFileSystem(scratch_base_path=tmp_path, recipe_run_id=recipe_run_id)
|
|
48
48
|
task.write(
|
|
49
49
|
quality_data_warning_only,
|
|
50
|
-
tags=DlnirspTag.quality_data(),
|
|
50
|
+
tags=[DlnirspTag.output(), DlnirspTag.quality_data()],
|
|
51
51
|
encoder=quality_data_encoder,
|
|
52
52
|
relative_path=f"{task.constants.dataset_id}_quality_data.json",
|
|
53
53
|
)
|
|
@@ -74,10 +74,13 @@ l0_pipeline.add_node(
|
|
|
74
74
|
)
|
|
75
75
|
|
|
76
76
|
# Output flow
|
|
77
|
-
l0_pipeline.add_node(
|
|
77
|
+
l0_pipeline.add_node(
|
|
78
|
+
task=TransferL1Data,
|
|
79
|
+
upstreams=[DlnirspWriteL1Frame, AssembleDlnirspMovie, DlnirspAssembleQualityData],
|
|
80
|
+
)
|
|
78
81
|
l0_pipeline.add_node(
|
|
79
82
|
task=SubmitDatasetMetadata,
|
|
80
|
-
upstreams=[DlnirspWriteL1Frame,
|
|
83
|
+
upstreams=[DlnirspWriteL1Frame, AssembleDlnirspMovie],
|
|
81
84
|
)
|
|
82
85
|
l0_pipeline.add_node(
|
|
83
86
|
task=PublishCatalogAndQualityMessages, upstreams=[TransferL1Data, SubmitDatasetMetadata]
|
|
@@ -87,7 +87,9 @@ trial_pipeline.add_node(
|
|
|
87
87
|
)
|
|
88
88
|
trial_pipeline.add_node(task=CreateTrialAsdf, upstreams=DlnirspWriteL1Frame, pip_extras=["asdf"])
|
|
89
89
|
trial_pipeline.add_node(
|
|
90
|
-
task=CreateTrialQualityReport,
|
|
90
|
+
task=CreateTrialQualityReport,
|
|
91
|
+
upstreams=DlnirspAssembleQualityData,
|
|
92
|
+
pip_extras=["quality", "inventory"],
|
|
91
93
|
)
|
|
92
94
|
|
|
93
95
|
# Output
|
{dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-dlnirsp
|
|
3
|
-
Version: 0.32.
|
|
3
|
+
Version: 0.32.7
|
|
4
4
|
Summary: Science processing code for the DLNIRSP instrument on DKIST
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,13 +13,13 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
14
|
Requires-Python: >=3.12
|
|
15
15
|
Description-Content-Type: text/x-rst
|
|
16
|
-
Requires-Dist: dkist-processing-common==11.
|
|
16
|
+
Requires-Dist: dkist-processing-common==11.9.1
|
|
17
17
|
Requires-Dist: dkist-processing-math==2.2.1
|
|
18
18
|
Requires-Dist: dkist-processing-pac==3.1.1
|
|
19
19
|
Requires-Dist: dkist-header-validator==5.2.1
|
|
20
20
|
Requires-Dist: dkist-fits-specifications==4.17.0
|
|
21
21
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
22
|
-
Requires-Dist: dkist-service-configuration==4.1.
|
|
22
|
+
Requires-Dist: dkist-service-configuration==4.1.13
|
|
23
23
|
Requires-Dist: astropy==7.0.2
|
|
24
24
|
Requires-Dist: numpy==2.2.5
|
|
25
25
|
Requires-Dist: numba==0.61.2
|
|
@@ -43,10 +43,10 @@ Requires-Dist: dkist-processing-dlnirsp[asdf]; extra == "test"
|
|
|
43
43
|
Requires-Dist: dkist-processing-dlnirsp[quality]; extra == "test"
|
|
44
44
|
Provides-Extra: inventory
|
|
45
45
|
Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
|
|
46
|
-
Requires-Dist: dkist-inventory==1.11.
|
|
46
|
+
Requires-Dist: dkist-inventory==1.11.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.11.
|
|
49
|
+
Requires-Dist: dkist-inventory[asdf]==1.11.2; extra == "asdf"
|
|
50
50
|
Provides-Extra: quality
|
|
51
51
|
Requires-Dist: dkist-quality==2.0.0; extra == "quality"
|
|
52
52
|
Provides-Extra: grogu
|
|
@@ -99,10 +99,10 @@ Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
|
99
99
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
100
100
|
Requires-Dist: anyio==4.12.0; extra == "frozen"
|
|
101
101
|
Requires-Dist: apache-airflow==2.11.0; extra == "frozen"
|
|
102
|
-
Requires-Dist: apache-airflow-providers-celery==3.
|
|
102
|
+
Requires-Dist: apache-airflow-providers-celery==3.14.0; extra == "frozen"
|
|
103
103
|
Requires-Dist: apache-airflow-providers-common-compat==1.10.0; extra == "frozen"
|
|
104
104
|
Requires-Dist: apache-airflow-providers-common-io==1.7.0; extra == "frozen"
|
|
105
|
-
Requires-Dist: apache-airflow-providers-common-sql==1.
|
|
105
|
+
Requires-Dist: apache-airflow-providers-common-sql==1.30.0; extra == "frozen"
|
|
106
106
|
Requires-Dist: apache-airflow-providers-fab==1.5.3; extra == "frozen"
|
|
107
107
|
Requires-Dist: apache-airflow-providers-ftp==3.14.0; extra == "frozen"
|
|
108
108
|
Requires-Dist: apache-airflow-providers-http==5.6.0; extra == "frozen"
|
|
@@ -118,14 +118,14 @@ Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
|
118
118
|
Requires-Dist: asgiref==3.11.0; extra == "frozen"
|
|
119
119
|
Requires-Dist: asteval==1.0.7; extra == "frozen"
|
|
120
120
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
121
|
-
Requires-Dist: astropy-iers-data==0.2025.12.
|
|
121
|
+
Requires-Dist: astropy-iers-data==0.2025.12.8.0.38.44; extra == "frozen"
|
|
122
122
|
Requires-Dist: asyncpg==0.31.0; extra == "frozen"
|
|
123
123
|
Requires-Dist: attrs==25.4.0; extra == "frozen"
|
|
124
124
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
125
125
|
Requires-Dist: billiard==4.2.4; extra == "frozen"
|
|
126
126
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
127
|
-
Requires-Dist: boto3==1.42.
|
|
128
|
-
Requires-Dist: botocore==1.42.
|
|
127
|
+
Requires-Dist: boto3==1.42.5; extra == "frozen"
|
|
128
|
+
Requires-Dist: botocore==1.42.5; extra == "frozen"
|
|
129
129
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
130
130
|
Requires-Dist: celery==5.6.0; extra == "frozen"
|
|
131
131
|
Requires-Dist: certifi==2025.11.12; extra == "frozen"
|
|
@@ -148,12 +148,12 @@ Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
|
148
148
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
149
149
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
150
150
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
151
|
-
Requires-Dist: dkist-processing-common==11.
|
|
152
|
-
Requires-Dist: dkist-processing-core==6.0.
|
|
153
|
-
Requires-Dist: dkist-processing-dlnirsp==0.32.
|
|
151
|
+
Requires-Dist: dkist-processing-common==11.9.1; extra == "frozen"
|
|
152
|
+
Requires-Dist: dkist-processing-core==6.0.1; extra == "frozen"
|
|
153
|
+
Requires-Dist: dkist-processing-dlnirsp==0.32.7; extra == "frozen"
|
|
154
154
|
Requires-Dist: dkist-processing-math==2.2.1; extra == "frozen"
|
|
155
155
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
156
|
-
Requires-Dist: dkist-service-configuration==4.1.
|
|
156
|
+
Requires-Dist: dkist-service-configuration==4.1.13; extra == "frozen"
|
|
157
157
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
158
158
|
Requires-Dist: dkist_fits_specifications==4.17.0; extra == "frozen"
|
|
159
159
|
Requires-Dist: dnspython==2.8.0; extra == "frozen"
|
|
@@ -163,12 +163,12 @@ Requires-Dist: fastjsonschema==2.21.2; extra == "frozen"
|
|
|
163
163
|
Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
164
164
|
Requires-Dist: fonttools==4.61.0; extra == "frozen"
|
|
165
165
|
Requires-Dist: frozenlist==1.8.0; extra == "frozen"
|
|
166
|
-
Requires-Dist: fsspec==2025.
|
|
167
|
-
Requires-Dist: globus-sdk==
|
|
166
|
+
Requires-Dist: fsspec==2025.12.0; extra == "frozen"
|
|
167
|
+
Requires-Dist: globus-sdk==4.2.0; extra == "frozen"
|
|
168
168
|
Requires-Dist: google-re2==1.1.20251105; extra == "frozen"
|
|
169
169
|
Requires-Dist: googleapis-common-protos==1.72.0; extra == "frozen"
|
|
170
170
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
171
|
-
Requires-Dist: greenlet==3.
|
|
171
|
+
Requires-Dist: greenlet==3.3.0; extra == "frozen"
|
|
172
172
|
Requires-Dist: grpcio==1.76.0; extra == "frozen"
|
|
173
173
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
174
174
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -206,34 +206,34 @@ Requires-Dist: more-itertools==10.8.0; extra == "frozen"
|
|
|
206
206
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
207
207
|
Requires-Dist: multidict==6.7.0; extra == "frozen"
|
|
208
208
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
209
|
-
Requires-Dist: networkx==3.6; extra == "frozen"
|
|
209
|
+
Requires-Dist: networkx==3.6.1; extra == "frozen"
|
|
210
210
|
Requires-Dist: numba==0.61.2; extra == "frozen"
|
|
211
211
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
212
212
|
Requires-Dist: object-clerk==1.0.0; extra == "frozen"
|
|
213
|
-
Requires-Dist: opentelemetry-api==1.
|
|
214
|
-
Requires-Dist: opentelemetry-exporter-otlp==1.
|
|
215
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.
|
|
216
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.
|
|
217
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.
|
|
218
|
-
Requires-Dist: opentelemetry-instrumentation==0.
|
|
219
|
-
Requires-Dist: opentelemetry-instrumentation-aiohttp-client==0.
|
|
220
|
-
Requires-Dist: opentelemetry-instrumentation-asgi==0.
|
|
221
|
-
Requires-Dist: opentelemetry-instrumentation-botocore==0.
|
|
222
|
-
Requires-Dist: opentelemetry-instrumentation-celery==0.
|
|
223
|
-
Requires-Dist: opentelemetry-instrumentation-dbapi==0.
|
|
224
|
-
Requires-Dist: opentelemetry-instrumentation-fastapi==0.
|
|
225
|
-
Requires-Dist: opentelemetry-instrumentation-pika==0.
|
|
226
|
-
Requires-Dist: opentelemetry-instrumentation-psycopg2==0.
|
|
227
|
-
Requires-Dist: opentelemetry-instrumentation-pymongo==0.
|
|
228
|
-
Requires-Dist: opentelemetry-instrumentation-redis==0.
|
|
229
|
-
Requires-Dist: opentelemetry-instrumentation-requests==0.
|
|
230
|
-
Requires-Dist: opentelemetry-instrumentation-sqlalchemy==0.
|
|
231
|
-
Requires-Dist: opentelemetry-instrumentation-system-metrics==0.
|
|
213
|
+
Requires-Dist: opentelemetry-api==1.39.0; extra == "frozen"
|
|
214
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.39.0; extra == "frozen"
|
|
215
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.39.0; extra == "frozen"
|
|
216
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc==1.39.0; extra == "frozen"
|
|
217
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.39.0; extra == "frozen"
|
|
218
|
+
Requires-Dist: opentelemetry-instrumentation==0.60b0; extra == "frozen"
|
|
219
|
+
Requires-Dist: opentelemetry-instrumentation-aiohttp-client==0.60b0; extra == "frozen"
|
|
220
|
+
Requires-Dist: opentelemetry-instrumentation-asgi==0.60b0; extra == "frozen"
|
|
221
|
+
Requires-Dist: opentelemetry-instrumentation-botocore==0.60b0; extra == "frozen"
|
|
222
|
+
Requires-Dist: opentelemetry-instrumentation-celery==0.60b0; extra == "frozen"
|
|
223
|
+
Requires-Dist: opentelemetry-instrumentation-dbapi==0.60b0; extra == "frozen"
|
|
224
|
+
Requires-Dist: opentelemetry-instrumentation-fastapi==0.60b0; extra == "frozen"
|
|
225
|
+
Requires-Dist: opentelemetry-instrumentation-pika==0.60b0; extra == "frozen"
|
|
226
|
+
Requires-Dist: opentelemetry-instrumentation-psycopg2==0.60b0; extra == "frozen"
|
|
227
|
+
Requires-Dist: opentelemetry-instrumentation-pymongo==0.60b0; extra == "frozen"
|
|
228
|
+
Requires-Dist: opentelemetry-instrumentation-redis==0.60b0; extra == "frozen"
|
|
229
|
+
Requires-Dist: opentelemetry-instrumentation-requests==0.60b0; extra == "frozen"
|
|
230
|
+
Requires-Dist: opentelemetry-instrumentation-sqlalchemy==0.60b0; extra == "frozen"
|
|
231
|
+
Requires-Dist: opentelemetry-instrumentation-system-metrics==0.60b0; extra == "frozen"
|
|
232
232
|
Requires-Dist: opentelemetry-propagator-aws-xray==1.0.2; extra == "frozen"
|
|
233
|
-
Requires-Dist: opentelemetry-proto==1.
|
|
234
|
-
Requires-Dist: opentelemetry-sdk==1.
|
|
235
|
-
Requires-Dist: opentelemetry-semantic-conventions==0.
|
|
236
|
-
Requires-Dist: opentelemetry-util-http==0.
|
|
233
|
+
Requires-Dist: opentelemetry-proto==1.39.0; extra == "frozen"
|
|
234
|
+
Requires-Dist: opentelemetry-sdk==1.39.0; extra == "frozen"
|
|
235
|
+
Requires-Dist: opentelemetry-semantic-conventions==0.60b0; extra == "frozen"
|
|
236
|
+
Requires-Dist: opentelemetry-util-http==0.60b0; extra == "frozen"
|
|
237
237
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
238
238
|
Requires-Dist: packaging==25.0; extra == "frozen"
|
|
239
239
|
Requires-Dist: pandas==2.3.3; extra == "frozen"
|
|
@@ -244,7 +244,7 @@ Requires-Dist: pendulum==3.1.0; extra == "frozen"
|
|
|
244
244
|
Requires-Dist: pika==1.3.2; extra == "frozen"
|
|
245
245
|
Requires-Dist: pillow==10.4.0; extra == "frozen"
|
|
246
246
|
Requires-Dist: pip==25.3; extra == "frozen"
|
|
247
|
-
Requires-Dist: platformdirs==4.5.
|
|
247
|
+
Requires-Dist: platformdirs==4.5.1; extra == "frozen"
|
|
248
248
|
Requires-Dist: pluggy==1.6.0; extra == "frozen"
|
|
249
249
|
Requires-Dist: pooch==1.8.2; extra == "frozen"
|
|
250
250
|
Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
@@ -252,7 +252,7 @@ Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
|
252
252
|
Requires-Dist: prometheus_client==0.23.1; extra == "frozen"
|
|
253
253
|
Requires-Dist: prompt_toolkit==3.0.52; extra == "frozen"
|
|
254
254
|
Requires-Dist: propcache==0.4.1; extra == "frozen"
|
|
255
|
-
Requires-Dist: protobuf==6.33.
|
|
255
|
+
Requires-Dist: protobuf==6.33.2; extra == "frozen"
|
|
256
256
|
Requires-Dist: psutil==7.1.3; extra == "frozen"
|
|
257
257
|
Requires-Dist: psycopg2-binary==2.9.11; extra == "frozen"
|
|
258
258
|
Requires-Dist: pycparser==2.23; extra == "frozen"
|
|
@@ -300,8 +300,8 @@ Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
|
300
300
|
Requires-Dist: tzlocal==5.3.1; extra == "frozen"
|
|
301
301
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
302
302
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
303
|
-
Requires-Dist: universal_pathlib==0.3.
|
|
304
|
-
Requires-Dist: urllib3==2.
|
|
303
|
+
Requires-Dist: universal_pathlib==0.3.7; extra == "frozen"
|
|
304
|
+
Requires-Dist: urllib3==2.6.1; extra == "frozen"
|
|
305
305
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
306
306
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
307
307
|
Requires-Dist: wcwidth==0.2.14; extra == "frozen"
|
|
@@ -346,6 +346,10 @@ Environment Variables
|
|
|
346
346
|
- annotation=str required=False default='unknown-service-version' alias_priority=2 validation_alias='DKIST_SERVICE_VERSION' description='Service version for OpenTelemetry'
|
|
347
347
|
* - NOMAD_ALLOC_ID
|
|
348
348
|
- annotation=str required=False default='unknown-allocation-id' alias_priority=2 validation_alias='NOMAD_ALLOC_ID' description='Nomad allocation ID for OpenTelemetry'
|
|
349
|
+
* - NOMAD_ALLOC_NAME
|
|
350
|
+
- annotation=str required=False default='unknown-allocation-name' alias='NOMAD_ALLOC_NAME' alias_priority=2 description='Allocation name for the deployed container the task is running on.'
|
|
351
|
+
* - NOMAD_GROUP_NAME
|
|
352
|
+
- annotation=str required=False default='unknown-allocation-group' alias='NOMAD_GROUP_NAME' alias_priority=2 description='Allocation group for the deployed container the task is running on'
|
|
349
353
|
* - OTEL_EXPORTER_OTLP_TRACES_INSECURE
|
|
350
354
|
- annotation=bool required=False default=True description='Use insecure connection for OTLP traces'
|
|
351
355
|
* - OTEL_EXPORTER_OTLP_METRICS_INSECURE
|
|
@@ -386,12 +390,12 @@ Environment Variables
|
|
|
386
390
|
- annotation=Union[dict, NoneType] required=False default=None description='S3 upload configuration for the object store.'
|
|
387
391
|
* - S3_DOWNLOAD_CONFIG
|
|
388
392
|
- annotation=Union[dict, NoneType] required=False default=None description='S3 download configuration for the object store.'
|
|
389
|
-
* -
|
|
390
|
-
- annotation=
|
|
391
|
-
* -
|
|
392
|
-
- annotation=
|
|
393
|
-
* -
|
|
394
|
-
- annotation=
|
|
393
|
+
* - GLOBUS_MAX_RETRIES
|
|
394
|
+
- annotation=int required=False default=5 description='Max retries for transient errors on calls to the globus api.'
|
|
395
|
+
* - GLOBUS_INBOUND_CLIENT_CREDENTIALS
|
|
396
|
+
- annotation=list[GlobusClientCredential] required=False default_factory=list description='Globus client credentials for inbound transfers.' examples=[[{'client_id': 'id1', 'client_secret': 'secret1'}, {'client_id': 'id2', 'client_secret': 'secret2'}]]
|
|
397
|
+
* - GLOBUS_OUTBOUND_CLIENT_CREDENTIALS
|
|
398
|
+
- annotation=list[GlobusClientCredential] required=False default_factory=list description='Globus client credentials for outbound transfers.' examples=[[{'client_id': 'id3', 'client_secret': 'secret3'}, {'client_id': 'id4', 'client_secret': 'secret4'}]]
|
|
395
399
|
* - OBJECT_STORE_ENDPOINT
|
|
396
400
|
- annotation=Union[str, NoneType] required=False default=None description='Object store Globus Endpoint ID.'
|
|
397
401
|
* - SCRATCH_ENDPOINT
|
{dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/RECORD
RENAMED
|
@@ -60,7 +60,7 @@ dkist_processing_dlnirsp/tests/test_parse.py,sha256=UIII4R6JruUEFIlYDRwTwiBqyf4l
|
|
|
60
60
|
dkist_processing_dlnirsp/tests/test_quality.py,sha256=OBWva_E6T5RfDuo73LiTdTr7uh2FO04VpBAsSOLfjVQ,6122
|
|
61
61
|
dkist_processing_dlnirsp/tests/test_science.py,sha256=1DKqKNAEZEsVCffYz_TiEc2REG7cBIfGeig1kJK4ZtE,20902
|
|
62
62
|
dkist_processing_dlnirsp/tests/test_solar.py,sha256=jTNnxs5fE8R_hLvmdAU9x4RXJaSpJWGQajL7kzXTxPQ,12111
|
|
63
|
-
dkist_processing_dlnirsp/tests/test_trial_create_quality_report.py,sha256=
|
|
63
|
+
dkist_processing_dlnirsp/tests/test_trial_create_quality_report.py,sha256=5wgj4PhiB-JRl7Sm7EUIvk5DDcFYpytpVLPmMbPuN_Y,2807
|
|
64
64
|
dkist_processing_dlnirsp/tests/test_wavelength_calibration.py,sha256=GFGXtl0KdClolknAwfR0aG5t-Ux5N5mynol4dKp0cn8,14830
|
|
65
65
|
dkist_processing_dlnirsp/tests/test_workflows.py,sha256=cRw_c90B-ZXGaw0vVWymYCE-_Ll6mBeM7aHsu-uXewo,290
|
|
66
66
|
dkist_processing_dlnirsp/tests/test_write_l1.py,sha256=J9D1QqCDe0IzYsphA4s_ciDEL0tUUSV1KLm8yo9mxyM,13335
|
|
@@ -73,8 +73,8 @@ dkist_processing_dlnirsp/tests/local_trial_workflows/local_trial_dev_mockers.py,
|
|
|
73
73
|
dkist_processing_dlnirsp/tests/local_trial_workflows/local_trial_helpers.py,sha256=5abEDqLyJ1mH6RYlV6ReHOqUkUste0vC6raENFQeDNY,21375
|
|
74
74
|
dkist_processing_dlnirsp/tests/local_trial_workflows/translate_files.py,sha256=bsOqBtGE9SdOZL2ROJ-murJHjymYrE_nEPNHJgy7pDc,1882
|
|
75
75
|
dkist_processing_dlnirsp/workflows/__init__.py,sha256=bDRNGCIayR8Z-dcOClvk5nTmHgKORTrZUVX9e3UpCc8,165
|
|
76
|
-
dkist_processing_dlnirsp/workflows/l0_processing.py,sha256=
|
|
77
|
-
dkist_processing_dlnirsp/workflows/trial_workflow.py,sha256=
|
|
76
|
+
dkist_processing_dlnirsp/workflows/l0_processing.py,sha256=m7zNXo9XoBwXzfiDQTmf4mPgJrTXY15DvqrAXwsx7Mg,4117
|
|
77
|
+
dkist_processing_dlnirsp/workflows/trial_workflow.py,sha256=eqfRtWSuusM-5yvDjlabeCKolAswvw7rOqFEohFjOhI,4732
|
|
78
78
|
docs/Makefile,sha256=qnlVz6PuBqE39NfHWuUnHhNEA-EFgT2-WJNNNy9ttfk,4598
|
|
79
79
|
docs/bad_pixel_calibration.rst,sha256=UPBJCG1XWIFMwaR8BnvvbfdEN68s1SJ2nlxsXe1viHU,3403
|
|
80
80
|
docs/changelog.rst,sha256=ZpZPJIyl4nI0Eicku6uSrLdiinNOF2GcZwrvTEsb-Zs,346
|
|
@@ -94,8 +94,8 @@ docs/science_calibration.rst,sha256=JUMeS7KyIsL9cUuy-IdV2tQ-wQ2lBx6j8u_51ThJzVg,
|
|
|
94
94
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
95
95
|
docs/wavelength_calibration.rst,sha256=QGUd5Xmv5f7WQ1EKvw2CcgiMJQULjzdCW1hSQ8h8jj0,4123
|
|
96
96
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
97
|
-
dkist_processing_dlnirsp-0.32.
|
|
98
|
-
dkist_processing_dlnirsp-0.32.
|
|
99
|
-
dkist_processing_dlnirsp-0.32.
|
|
100
|
-
dkist_processing_dlnirsp-0.32.
|
|
101
|
-
dkist_processing_dlnirsp-0.32.
|
|
97
|
+
dkist_processing_dlnirsp-0.32.7.dist-info/METADATA,sha256=Br6Uzs3P1JqMhZaAymrLMSvM8r7oYxUPIh8Sdkf5_eM,30108
|
|
98
|
+
dkist_processing_dlnirsp-0.32.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
99
|
+
dkist_processing_dlnirsp-0.32.7.dist-info/entry_points.txt,sha256=p4-7cpIfxmQGFUDIP5n5noE5KADHN2-JvV03e0gOx9s,140
|
|
100
|
+
dkist_processing_dlnirsp-0.32.7.dist-info/top_level.txt,sha256=4WmLV9LQM78KTFnkHmtaOJvVHAPpz0m9ruzDS-B_cUo,49
|
|
101
|
+
dkist_processing_dlnirsp-0.32.7.dist-info/RECORD,,
|
{dkist_processing_dlnirsp-0.32.5.dist-info → dkist_processing_dlnirsp-0.32.7.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|