dkist-processing-visp 5.1.0__py3-none-any.whl → 5.1.2__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_visp/tests/test_assemble_quality.py +3 -1
- dkist_processing_visp/tests/test_trial_create_quality_report.py +1 -1
- dkist_processing_visp/workflows/l0_processing.py +4 -2
- dkist_processing_visp/workflows/trial_workflows.py +3 -1
- {dkist_processing_visp-5.1.0.dist-info → dkist_processing_visp-5.1.2.dist-info}/METADATA +28 -24
- {dkist_processing_visp-5.1.0.dist-info → dkist_processing_visp-5.1.2.dist-info}/RECORD +8 -8
- {dkist_processing_visp-5.1.0.dist-info → dkist_processing_visp-5.1.2.dist-info}/WHEEL +0 -0
- {dkist_processing_visp-5.1.0.dist-info → dkist_processing_visp-5.1.2.dist-info}/top_level.txt +0 -0
|
@@ -78,7 +78,9 @@ def test_vignette_metrics_built(visp_assemble_quality_data_task):
|
|
|
78
78
|
|
|
79
79
|
task()
|
|
80
80
|
|
|
81
|
-
final_report_list = list(
|
|
81
|
+
final_report_list = list(
|
|
82
|
+
task.read(tags=[VispTag.output(), VispTag.quality_data()], decoder=quality_data_decoder)
|
|
83
|
+
)
|
|
82
84
|
assert len(final_report_list) == 1
|
|
83
85
|
final_report = final_report_list[0]
|
|
84
86
|
|
|
@@ -49,7 +49,7 @@ def create_trial_quality_report_task(
|
|
|
49
49
|
)
|
|
50
50
|
task.write(
|
|
51
51
|
quality_data_warning_only,
|
|
52
|
-
tags=VispTag.quality_data(),
|
|
52
|
+
tags=[VispTag.output(), VispTag.quality_data()],
|
|
53
53
|
encoder=quality_data_encoder,
|
|
54
54
|
relative_path=f"{task.constants.dataset_id}_quality_data.json",
|
|
55
55
|
)
|
|
@@ -64,10 +64,12 @@ l0_pipeline.add_node(
|
|
|
64
64
|
)
|
|
65
65
|
|
|
66
66
|
# Output flow
|
|
67
|
-
l0_pipeline.add_node(
|
|
67
|
+
l0_pipeline.add_node(
|
|
68
|
+
task=TransferL1Data, upstreams=[VispWriteL1Frame, AssembleVispMovie, VispAssembleQualityData]
|
|
69
|
+
)
|
|
68
70
|
l0_pipeline.add_node(
|
|
69
71
|
task=SubmitDatasetMetadata,
|
|
70
|
-
upstreams=[VispWriteL1Frame,
|
|
72
|
+
upstreams=[VispWriteL1Frame, AssembleVispMovie],
|
|
71
73
|
)
|
|
72
74
|
l0_pipeline.add_node(
|
|
73
75
|
task=PublishCatalogAndQualityMessages, upstreams=[SubmitDatasetMetadata, TransferL1Data]
|
|
@@ -71,7 +71,9 @@ full_trial_pipeline.add_node(
|
|
|
71
71
|
)
|
|
72
72
|
full_trial_pipeline.add_node(task=CreateTrialAsdf, upstreams=VispWriteL1Frame, pip_extras=["asdf"])
|
|
73
73
|
full_trial_pipeline.add_node(
|
|
74
|
-
task=CreateTrialQualityReport,
|
|
74
|
+
task=CreateTrialQualityReport,
|
|
75
|
+
upstreams=VispAssembleQualityData,
|
|
76
|
+
pip_extras=["quality", "inventory"],
|
|
75
77
|
)
|
|
76
78
|
|
|
77
79
|
# Output
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-visp
|
|
3
|
-
Version: 5.1.
|
|
3
|
+
Version: 5.1.2
|
|
4
4
|
Summary: Science processing code for the ViSP instrument on DKIST
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -13,12 +13,12 @@ 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
|
-
Requires-Dist: dkist-service-configuration==4.1.
|
|
21
|
+
Requires-Dist: dkist-service-configuration==4.1.13
|
|
22
22
|
Requires-Dist: dkist-spectral-lines==3.0.0
|
|
23
23
|
Requires-Dist: solar-wavelength-calibration==2.0.0
|
|
24
24
|
Requires-Dist: astropy==7.0.2
|
|
@@ -44,10 +44,10 @@ Requires-Dist: dkist-processing-visp[asdf]; extra == "test"
|
|
|
44
44
|
Requires-Dist: dkist-processing-visp[quality]; extra == "test"
|
|
45
45
|
Provides-Extra: inventory
|
|
46
46
|
Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
|
|
47
|
-
Requires-Dist: dkist-inventory==1.11.
|
|
47
|
+
Requires-Dist: dkist-inventory==1.11.2; extra == "inventory"
|
|
48
48
|
Provides-Extra: asdf
|
|
49
49
|
Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
|
|
50
|
-
Requires-Dist: dkist-inventory[asdf]==1.11.
|
|
50
|
+
Requires-Dist: dkist-inventory[asdf]==1.11.2; extra == "asdf"
|
|
51
51
|
Provides-Extra: quality
|
|
52
52
|
Requires-Dist: dkist-quality==2.0.0; extra == "quality"
|
|
53
53
|
Provides-Extra: grogu
|
|
@@ -119,14 +119,14 @@ Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
|
119
119
|
Requires-Dist: asgiref==3.11.0; extra == "frozen"
|
|
120
120
|
Requires-Dist: asteval==1.0.7; extra == "frozen"
|
|
121
121
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
122
|
-
Requires-Dist: astropy-iers-data==0.2025.12.
|
|
122
|
+
Requires-Dist: astropy-iers-data==0.2025.12.8.0.38.44; extra == "frozen"
|
|
123
123
|
Requires-Dist: asyncpg==0.31.0; extra == "frozen"
|
|
124
124
|
Requires-Dist: attrs==25.4.0; extra == "frozen"
|
|
125
125
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
126
126
|
Requires-Dist: billiard==4.2.4; extra == "frozen"
|
|
127
127
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
128
|
-
Requires-Dist: boto3==1.42.
|
|
129
|
-
Requires-Dist: botocore==1.42.
|
|
128
|
+
Requires-Dist: boto3==1.42.5; extra == "frozen"
|
|
129
|
+
Requires-Dist: botocore==1.42.5; extra == "frozen"
|
|
130
130
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
131
131
|
Requires-Dist: celery==5.6.0; extra == "frozen"
|
|
132
132
|
Requires-Dist: certifi==2025.11.12; extra == "frozen"
|
|
@@ -149,12 +149,12 @@ Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
|
149
149
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
150
150
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
151
151
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
152
|
-
Requires-Dist: dkist-processing-common==11.
|
|
153
|
-
Requires-Dist: dkist-processing-core==6.0.
|
|
152
|
+
Requires-Dist: dkist-processing-common==11.9.1; extra == "frozen"
|
|
153
|
+
Requires-Dist: dkist-processing-core==6.0.1; 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-processing-visp==5.1.
|
|
157
|
-
Requires-Dist: dkist-service-configuration==4.1.
|
|
156
|
+
Requires-Dist: dkist-processing-visp==5.1.2; extra == "frozen"
|
|
157
|
+
Requires-Dist: dkist-service-configuration==4.1.13; extra == "frozen"
|
|
158
158
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
159
159
|
Requires-Dist: dkist_fits_specifications==4.17.0; extra == "frozen"
|
|
160
160
|
Requires-Dist: dnspython==2.8.0; extra == "frozen"
|
|
@@ -165,11 +165,11 @@ Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
|
165
165
|
Requires-Dist: fonttools==4.61.0; extra == "frozen"
|
|
166
166
|
Requires-Dist: frozenlist==1.8.0; extra == "frozen"
|
|
167
167
|
Requires-Dist: fsspec==2025.12.0; extra == "frozen"
|
|
168
|
-
Requires-Dist: globus-sdk==
|
|
168
|
+
Requires-Dist: globus-sdk==4.2.0; extra == "frozen"
|
|
169
169
|
Requires-Dist: google-re2==1.1.20251105; extra == "frozen"
|
|
170
170
|
Requires-Dist: googleapis-common-protos==1.72.0; extra == "frozen"
|
|
171
171
|
Requires-Dist: gqlclient==1.2.3; extra == "frozen"
|
|
172
|
-
Requires-Dist: greenlet==3.
|
|
172
|
+
Requires-Dist: greenlet==3.3.0; extra == "frozen"
|
|
173
173
|
Requires-Dist: grpcio==1.76.0; extra == "frozen"
|
|
174
174
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
175
175
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -207,7 +207,7 @@ Requires-Dist: more-itertools==10.8.0; extra == "frozen"
|
|
|
207
207
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
208
208
|
Requires-Dist: multidict==6.7.0; extra == "frozen"
|
|
209
209
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
210
|
-
Requires-Dist: networkx==3.6; extra == "frozen"
|
|
210
|
+
Requires-Dist: networkx==3.6.1; extra == "frozen"
|
|
211
211
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
212
212
|
Requires-Dist: object-clerk==1.0.0; extra == "frozen"
|
|
213
213
|
Requires-Dist: opentelemetry-api==1.39.0; 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"
|
|
@@ -303,7 +303,7 @@ Requires-Dist: tzlocal==5.3.1; extra == "frozen"
|
|
|
303
303
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
304
304
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
305
305
|
Requires-Dist: universal_pathlib==0.3.7; extra == "frozen"
|
|
306
|
-
Requires-Dist: urllib3==2.
|
|
306
|
+
Requires-Dist: urllib3==2.6.1; extra == "frozen"
|
|
307
307
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
308
308
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
309
309
|
Requires-Dist: wcwidth==0.2.14; extra == "frozen"
|
|
@@ -348,6 +348,10 @@ Environment Variables
|
|
|
348
348
|
- annotation=str required=False default='unknown-service-version' alias_priority=2 validation_alias='DKIST_SERVICE_VERSION' description='Service version for OpenTelemetry'
|
|
349
349
|
* - NOMAD_ALLOC_ID
|
|
350
350
|
- annotation=str required=False default='unknown-allocation-id' alias_priority=2 validation_alias='NOMAD_ALLOC_ID' description='Nomad allocation ID for OpenTelemetry'
|
|
351
|
+
* - NOMAD_ALLOC_NAME
|
|
352
|
+
- 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.'
|
|
353
|
+
* - NOMAD_GROUP_NAME
|
|
354
|
+
- 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'
|
|
351
355
|
* - OTEL_EXPORTER_OTLP_TRACES_INSECURE
|
|
352
356
|
- annotation=bool required=False default=True description='Use insecure connection for OTLP traces'
|
|
353
357
|
* - OTEL_EXPORTER_OTLP_METRICS_INSECURE
|
|
@@ -388,12 +392,12 @@ Environment Variables
|
|
|
388
392
|
- annotation=Union[dict, NoneType] required=False default=None description='S3 upload configuration for the object store.'
|
|
389
393
|
* - S3_DOWNLOAD_CONFIG
|
|
390
394
|
- annotation=Union[dict, NoneType] required=False default=None description='S3 download configuration for the object store.'
|
|
391
|
-
* -
|
|
392
|
-
- annotation=
|
|
393
|
-
* -
|
|
394
|
-
- annotation=
|
|
395
|
-
* -
|
|
396
|
-
- annotation=
|
|
395
|
+
* - GLOBUS_MAX_RETRIES
|
|
396
|
+
- annotation=int required=False default=5 description='Max retries for transient errors on calls to the globus api.'
|
|
397
|
+
* - GLOBUS_INBOUND_CLIENT_CREDENTIALS
|
|
398
|
+
- 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'}]]
|
|
399
|
+
* - GLOBUS_OUTBOUND_CLIENT_CREDENTIALS
|
|
400
|
+
- 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'}]]
|
|
397
401
|
* - OBJECT_STORE_ENDPOINT
|
|
398
402
|
- annotation=Union[str, NoneType] required=False default=None description='Object store Globus Endpoint ID.'
|
|
399
403
|
* - SCRATCH_ENDPOINT
|
|
@@ -42,7 +42,7 @@ dkist_processing_visp/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
42
42
|
dkist_processing_visp/tests/conftest.py,sha256=h5K8OyKFKmV6emjDywrS_ZTeWburIyBnZw_3L8uJmnY,18652
|
|
43
43
|
dkist_processing_visp/tests/header_models.py,sha256=80IZgVsEoGbWOG8kvh7BjC2gHqZq9QSEDcjcmW5B4gA,21126
|
|
44
44
|
dkist_processing_visp/tests/test_assemble_movie.py,sha256=T5EZzdB3sNY4HcSkN2W1ZBDaI4a68ZUNqPB-JpANSQ0,2247
|
|
45
|
-
dkist_processing_visp/tests/test_assemble_quality.py,sha256=
|
|
45
|
+
dkist_processing_visp/tests/test_assemble_quality.py,sha256=i2INzb73BM14A6VKD70eb5vaAv5_QjPy3VVVb4lonkc,4314
|
|
46
46
|
dkist_processing_visp/tests/test_background_light.py,sha256=Zvm8s38qx_ybviEhnKqPI4s36VFBJKtsNrp31-o8lEQ,17553
|
|
47
47
|
dkist_processing_visp/tests/test_dark.py,sha256=iKp12bHOOKPf7GAB8iKYpZu1AXFaESAW6C0ua1nVFXA,5552
|
|
48
48
|
dkist_processing_visp/tests/test_downsample.py,sha256=iSmb4PwpZtnVU06tmlko1wwepWueQ3KJ459XYgNIpws,2211
|
|
@@ -57,7 +57,7 @@ dkist_processing_visp/tests/test_parse.py,sha256=XyH8oCk5C0CWl4ndNIyVjgXLoMg0679
|
|
|
57
57
|
dkist_processing_visp/tests/test_quality.py,sha256=YW24VjEHoILseFIXZBp4-o7egT26mfT1lafzajVjXu8,6905
|
|
58
58
|
dkist_processing_visp/tests/test_science.py,sha256=KpOYvL86xhSnTCOcVDveE-enDxcj_G4IrUw_wa375tI,23893
|
|
59
59
|
dkist_processing_visp/tests/test_solar.py,sha256=xuKeUrnAeTQoWbL6pUTiRr09jw0O4jYL6-MSCmyF_k4,16789
|
|
60
|
-
dkist_processing_visp/tests/test_trial_create_quality_report.py,sha256=
|
|
60
|
+
dkist_processing_visp/tests/test_trial_create_quality_report.py,sha256=5LSvLiInp_ce_jObtBGNHQgVAkvJr9bYgY7IzIKrEuU,2799
|
|
61
61
|
dkist_processing_visp/tests/test_visp_constants.py,sha256=y2x42Y-dK2lrCPufLAV1KHpu2fQ-FRpe8tSIhfHJEw8,3134
|
|
62
62
|
dkist_processing_visp/tests/test_workflows.py,sha256=qyWxagIDv-MmVN0u3KFswa5HdaHC6uGeJpvgxvPE30E,287
|
|
63
63
|
dkist_processing_visp/tests/test_write_l1.py,sha256=ORNKUvF4RPjXc24HgOzyVsP0BCQ9izi54EqXpjLzHXQ,6574
|
|
@@ -68,9 +68,9 @@ dkist_processing_visp/tests/local_trial_workflows/l0_solar_gain_as_science.py,sh
|
|
|
68
68
|
dkist_processing_visp/tests/local_trial_workflows/l0_to_l1.py,sha256=cwEdvUGqqSpp4htrxlmyRN2sZBBvVOjomd66DEqTmTA,15191
|
|
69
69
|
dkist_processing_visp/tests/local_trial_workflows/local_trial_helpers.py,sha256=UYGDwvCqzyCzyp44T-vys_JdKuMVRVS7bpWG9gvwnSE,28250
|
|
70
70
|
dkist_processing_visp/workflows/__init__.py,sha256=1-GP9tOzjCxLJtyq0ry_x4dPdArfSso8Hxu65ydPpXQ,103
|
|
71
|
-
dkist_processing_visp/workflows/l0_processing.py,sha256=
|
|
71
|
+
dkist_processing_visp/workflows/l0_processing.py,sha256=Af4pDYwuWqXGqapCsOwWhDKrjsu4Pdn4II0YYe_pUL4,3339
|
|
72
72
|
dkist_processing_visp/workflows/single_task_workflows.py,sha256=LK4dsshM0-lwy79WaMoTplyCxUyINnP9RU74MG_dhyc,33
|
|
73
|
-
dkist_processing_visp/workflows/trial_workflows.py,sha256=
|
|
73
|
+
dkist_processing_visp/workflows/trial_workflows.py,sha256=l3WY9NDqRMCxgadIFRD1UTV99EpA7sD_NXApFXJ2UNY,3824
|
|
74
74
|
docs/Makefile,sha256=qnlVz6PuBqE39NfHWuUnHhNEA-EFgT2-WJNNNy9ttfk,4598
|
|
75
75
|
docs/background_light.rst,sha256=FWj8KH7H51BtoqPCJ1A_VIWJkjaXD8-dwM9RdY1rkIc,5147
|
|
76
76
|
docs/changelog.rst,sha256=ZpZPJIyl4nI0Eicku6uSrLdiinNOF2GcZwrvTEsb-Zs,346
|
|
@@ -88,7 +88,7 @@ docs/requirements_table.rst,sha256=_HIbwFpDooM5n0JjiDAbFozGfJuX13smtcoujLFN4Gk,2
|
|
|
88
88
|
docs/science_calibration.rst,sha256=VN_g7xSjN-nbXhlBaFnPCbNcsc_Qu0207jEUfRAjnBE,2939
|
|
89
89
|
docs/scientific_changelog.rst,sha256=01AWBSHg8zElnodCgAq-hMxhk9CkX5rtEENx4iz0sjI,300
|
|
90
90
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
91
|
-
dkist_processing_visp-5.1.
|
|
92
|
-
dkist_processing_visp-5.1.
|
|
93
|
-
dkist_processing_visp-5.1.
|
|
94
|
-
dkist_processing_visp-5.1.
|
|
91
|
+
dkist_processing_visp-5.1.2.dist-info/METADATA,sha256=6C_lfokabuM4G8EjslQa704Uw1hotLoLgyjOUZ1Ud_g,29969
|
|
92
|
+
dkist_processing_visp-5.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
93
|
+
dkist_processing_visp-5.1.2.dist-info/top_level.txt,sha256=9GHSn-ZMGQxaRNGrPP3HNc5ZkE7ftzluO74Jz5vUSTE,46
|
|
94
|
+
dkist_processing_visp-5.1.2.dist-info/RECORD,,
|
|
File without changes
|
{dkist_processing_visp-5.1.0.dist-info → dkist_processing_visp-5.1.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|