dkist-processing-visp 5.1.1__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.1.dist-info → dkist_processing_visp-5.1.2.dist-info}/METADATA +13 -12
- {dkist_processing_visp-5.1.1.dist-info → dkist_processing_visp-5.1.2.dist-info}/RECORD +8 -8
- {dkist_processing_visp-5.1.1.dist-info → dkist_processing_visp-5.1.2.dist-info}/WHEEL +0 -0
- {dkist_processing_visp-5.1.1.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,7 +13,7 @@ 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.9.
|
|
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
|
|
@@ -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,11 +149,11 @@ 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.9.
|
|
152
|
+
Requires-Dist: dkist-processing-common==11.9.1; extra == "frozen"
|
|
153
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.
|
|
156
|
+
Requires-Dist: dkist-processing-visp==5.1.2; extra == "frozen"
|
|
157
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"
|
|
@@ -169,6 +169,7 @@ 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.3.0; extra == "frozen"
|
|
172
173
|
Requires-Dist: grpcio==1.76.0; extra == "frozen"
|
|
173
174
|
Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
174
175
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
@@ -206,7 +207,7 @@ Requires-Dist: more-itertools==10.8.0; extra == "frozen"
|
|
|
206
207
|
Requires-Dist: moviepy==2.1.2; extra == "frozen"
|
|
207
208
|
Requires-Dist: multidict==6.7.0; extra == "frozen"
|
|
208
209
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
209
|
-
Requires-Dist: networkx==3.6; extra == "frozen"
|
|
210
|
+
Requires-Dist: networkx==3.6.1; extra == "frozen"
|
|
210
211
|
Requires-Dist: numpy==2.2.5; extra == "frozen"
|
|
211
212
|
Requires-Dist: object-clerk==1.0.0; extra == "frozen"
|
|
212
213
|
Requires-Dist: opentelemetry-api==1.39.0; extra == "frozen"
|
|
@@ -251,7 +252,7 @@ Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
|
251
252
|
Requires-Dist: prometheus_client==0.23.1; extra == "frozen"
|
|
252
253
|
Requires-Dist: prompt_toolkit==3.0.52; extra == "frozen"
|
|
253
254
|
Requires-Dist: propcache==0.4.1; extra == "frozen"
|
|
254
|
-
Requires-Dist: protobuf==6.33.
|
|
255
|
+
Requires-Dist: protobuf==6.33.2; extra == "frozen"
|
|
255
256
|
Requires-Dist: psutil==7.1.3; extra == "frozen"
|
|
256
257
|
Requires-Dist: psycopg2-binary==2.9.11; extra == "frozen"
|
|
257
258
|
Requires-Dist: pycparser==2.23; extra == "frozen"
|
|
@@ -302,7 +303,7 @@ Requires-Dist: tzlocal==5.3.1; extra == "frozen"
|
|
|
302
303
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
303
304
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
304
305
|
Requires-Dist: universal_pathlib==0.3.7; extra == "frozen"
|
|
305
|
-
Requires-Dist: urllib3==2.6.
|
|
306
|
+
Requires-Dist: urllib3==2.6.1; extra == "frozen"
|
|
306
307
|
Requires-Dist: vine==5.1.0; extra == "frozen"
|
|
307
308
|
Requires-Dist: voluptuous==0.15.2; extra == "frozen"
|
|
308
309
|
Requires-Dist: wcwidth==0.2.14; extra == "frozen"
|
|
@@ -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.1.dist-info → dkist_processing_visp-5.1.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|