dkist-processing-common 12.0.0rc5__py3-none-any.whl → 12.2.0__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_common/codecs/fits.py +27 -6
- dkist_processing_common/models/constants.py +16 -10
- dkist_processing_common/models/extras.py +35 -0
- dkist_processing_common/models/flower_pot.py +230 -9
- dkist_processing_common/models/tags.py +13 -0
- dkist_processing_common/parsers/average_bud.py +0 -2
- dkist_processing_common/parsers/cs_step.py +10 -10
- dkist_processing_common/parsers/id_bud.py +8 -10
- dkist_processing_common/parsers/lookup_bud.py +7 -11
- dkist_processing_common/parsers/near_bud.py +7 -12
- dkist_processing_common/parsers/retarder.py +9 -13
- dkist_processing_common/parsers/time.py +19 -55
- dkist_processing_common/parsers/unique_bud.py +7 -14
- dkist_processing_common/tasks/l1_output_data.py +23 -14
- dkist_processing_common/tasks/output_data_base.py +25 -4
- dkist_processing_common/tasks/parse_l0_input_data.py +4 -2
- dkist_processing_common/tasks/transfer_input_data.py +1 -0
- dkist_processing_common/tasks/write_extra.py +333 -0
- dkist_processing_common/tasks/write_l1.py +2 -55
- dkist_processing_common/tasks/write_l1_base.py +67 -0
- dkist_processing_common/tests/test_codecs.py +57 -11
- dkist_processing_common/tests/test_construct_dataset_extras.py +224 -0
- dkist_processing_common/tests/test_flower_pot.py +147 -5
- dkist_processing_common/tests/test_output_data_base.py +24 -2
- dkist_processing_common/tests/test_parse_l0_input_data.py +28 -4
- dkist_processing_common/tests/test_stems.py +140 -193
- dkist_processing_common/tests/test_transfer_l1_output_data.py +1 -0
- dkist_processing_common/tests/test_trial_catalog.py +2 -0
- dkist_processing_common/tests/test_workflow_task_base.py +0 -11
- dkist_processing_common/tests/test_write_l1.py +0 -1
- {dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/METADATA +4 -4
- {dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/RECORD +34 -31
- {dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/WHEEL +1 -1
- changelog/288.misc.rst +0 -1
- {dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/top_level.txt +0 -0
|
@@ -25,6 +25,7 @@ def transfer_l1_data_task(recipe_run_id, tmp_path, fake_constants_db):
|
|
|
25
25
|
task.constants._update(fake_constants_db)
|
|
26
26
|
frame_path = task.scratch.workflow_base_path / Path("frame.fits")
|
|
27
27
|
movie_path = task.scratch.workflow_base_path / Path("movie.mp4")
|
|
28
|
+
extra_path = task.scratch.workflow_base_path / Path("extra.fits")
|
|
28
29
|
with open(frame_path, "w") as f:
|
|
29
30
|
f.write("Frame")
|
|
30
31
|
task.tag(path=frame_path, tags=[Tag.frame(), Tag.output()])
|
|
@@ -7,6 +7,8 @@ from uuid import uuid4
|
|
|
7
7
|
import astropy.units as u
|
|
8
8
|
import pytest
|
|
9
9
|
from astropy.io import fits
|
|
10
|
+
from dkist_data_simulator.dataset_extras import DatasetExtraBase
|
|
11
|
+
from dkist_data_simulator.dataset_extras import InstrumentTables
|
|
10
12
|
from dkist_data_simulator.spec214.vbi import SimpleVBIDataset
|
|
11
13
|
from sqids import Sqids
|
|
12
14
|
|
|
@@ -175,17 +175,6 @@ def test_constants(workflow_data_task):
|
|
|
175
175
|
assert task.constants.instrument_twice == "foofoo"
|
|
176
176
|
|
|
177
177
|
|
|
178
|
-
def test_constant_dark_num_raw_frames_per_fpa(workflow_data_task):
|
|
179
|
-
"""
|
|
180
|
-
Given: a WorkflowDataTask's constants object
|
|
181
|
-
When: accessing a constant that does unusual processing in the property
|
|
182
|
-
Then: the value is correctly processed
|
|
183
|
-
"""
|
|
184
|
-
task = workflow_data_task[0]
|
|
185
|
-
task.constants._update({BudName.dark_num_raw_frames_per_fpa: ((1.1, (2, 3)), (4.4, (5,)))})
|
|
186
|
-
assert task.constants.dark_num_raw_frames_per_fpa == {1.1: [2, 3], 4.4: [5]}
|
|
187
|
-
|
|
188
|
-
|
|
189
178
|
def test_dataset_id(workflow_data_task):
|
|
190
179
|
"""
|
|
191
180
|
Given: a ParsedL0InputTaskBase task
|
{dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-common
|
|
3
|
-
Version: 12.0
|
|
3
|
+
Version: 12.2.0
|
|
4
4
|
Summary: Common task classes used by the DKIST science data processing pipelines
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -16,10 +16,10 @@ Description-Content-Type: text/x-rst
|
|
|
16
16
|
Requires-Dist: asdf<4.0.0,>=3.5.0
|
|
17
17
|
Requires-Dist: astropy>=7.0.0
|
|
18
18
|
Requires-Dist: dkist-fits-specifications<5.0,>=4.0.0
|
|
19
|
-
Requires-Dist: dkist-header-validator<6.0,>=5.
|
|
20
|
-
Requires-Dist: dkist-processing-core==7.0.
|
|
19
|
+
Requires-Dist: dkist-header-validator<6.0,>=5.3.0
|
|
20
|
+
Requires-Dist: dkist-processing-core==7.0.1
|
|
21
21
|
Requires-Dist: dkist-processing-pac<4.0,>=3.1
|
|
22
|
-
Requires-Dist: dkist-service-configuration<5.0,>=4.
|
|
22
|
+
Requires-Dist: dkist-service-configuration<5.0,>=4.2.0
|
|
23
23
|
Requires-Dist: dkist-spectral-lines<4.0,>=3.0.0
|
|
24
24
|
Requires-Dist: solar-wavelength-calibration<3.0,>=2.0.0
|
|
25
25
|
Requires-Dist: globus-sdk<5.0.0,>=4.0.0
|
{dkist_processing_common-12.0.0rc5.dist-info → dkist_processing_common-12.2.0.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
changelog/.gitempty,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
changelog/288.misc.rst,sha256=7IG2moLq70WJ6PjKq9CzCT64XE-2a60nEqjFdINBTzU,105
|
|
3
2
|
dkist_processing_common/__init__.py,sha256=GQ9EBnYhkOnt-qODclAoLS_g5YVhurxfg1tjVtI9rDI,320
|
|
4
3
|
dkist_processing_common/config.py,sha256=f511KVpK24sQO4dDr4L6PMj5dz0jmWgnx2Y-3DpV0cw,5991
|
|
5
4
|
dkist_processing_common/manual.py,sha256=bIVVyLsbXMh-g_2L3kGROL-1TtJe0_XviHsp7Br31x8,7023
|
|
@@ -13,7 +12,7 @@ dkist_processing_common/codecs/array.py,sha256=N5rsBlcyA1tJi1Wl7oBSJOsnjzpQXnr6j
|
|
|
13
12
|
dkist_processing_common/codecs/asdf.py,sha256=gA0yf524jhbr97TNHoDTq4D6ZSMth7mpFOTh_6IcNuA,1047
|
|
14
13
|
dkist_processing_common/codecs/basemodel.py,sha256=bdhpJXICLEPiNyekQKzNmJsmLtAvg94C-yp-uAiFTW0,815
|
|
15
14
|
dkist_processing_common/codecs/bytes.py,sha256=-nRujIfAqwSkxj-5S8cDVgwLd64FJKapHv8fZBshOVo,496
|
|
16
|
-
dkist_processing_common/codecs/fits.py,sha256=
|
|
15
|
+
dkist_processing_common/codecs/fits.py,sha256=Eh9vLIqajlUfcfHcVfc7DbcM1K6Mx4CBqhg020PRCfM,3080
|
|
17
16
|
dkist_processing_common/codecs/iobase.py,sha256=ESDUDy5eAPdb0nPRCt041iLbJzV3Ch4nrXkRQJgQCXE,978
|
|
18
17
|
dkist_processing_common/codecs/json.py,sha256=Cbg4fQMZKlYG0sI5Q-XRagheQNSR2ruqe7KjgTsW6wM,940
|
|
19
18
|
dkist_processing_common/codecs/path.py,sha256=znnBvIS529AsryJaARPWpKaX7_zhsb_-CLjUNLDfW-o,198
|
|
@@ -22,10 +21,11 @@ dkist_processing_common/codecs/str.py,sha256=Xqt5k8IhLc95KiiNiFwB1JWcVVc6T8AfcLr
|
|
|
22
21
|
dkist_processing_common/fonts/Lato-Regular.ttf,sha256=1jbkaDIx-THtoiLViOlE0IK_0726AvkovuRhwPGFslE,656568
|
|
23
22
|
dkist_processing_common/fonts/__init__.py,sha256=hBvZRtkoGRPlNDWCK-ZePXdSIlThCcjwBDfYaamVgAw,101
|
|
24
23
|
dkist_processing_common/models/__init__.py,sha256=6LMqemdzVZ87fRrpAsbEnTtWZ02_Gu_oajsUlwGRH_Q,74
|
|
25
|
-
dkist_processing_common/models/constants.py,sha256=
|
|
24
|
+
dkist_processing_common/models/constants.py,sha256=Xo-HDY-POx9LY5s8lGtXZldrqb1c58t0mpiKKoNdmow,20502
|
|
26
25
|
dkist_processing_common/models/dkist_location.py,sha256=6Nk0wvv4R8ptlrV7BXon7abq4YLvmTdUmPsDN5G8nWc,971
|
|
26
|
+
dkist_processing_common/models/extras.py,sha256=RI4JWOinYl1rRyA4anNDj5nCSIrvwrix_dOod9bcyHA,1207
|
|
27
27
|
dkist_processing_common/models/fits_access.py,sha256=imKqL4-_g6gTR-IeIjZ6qkMhQX3JujdrKFrTd9gOXnw,5605
|
|
28
|
-
dkist_processing_common/models/flower_pot.py,sha256=
|
|
28
|
+
dkist_processing_common/models/flower_pot.py,sha256=bSmnfN1r5ASx_E9GtvFzdT7lciLCpMy80TeSLztakZk,12289
|
|
29
29
|
dkist_processing_common/models/fried_parameter.py,sha256=ro_H2Eo3I88lRf1wJjZfTc_XOjhgLt4whIQR_sjAFbM,1609
|
|
30
30
|
dkist_processing_common/models/graphql.py,sha256=QsKLbytpw_Qg9pJASscA7dZRfDbHLkpLZaWeqaHUDvo,5133
|
|
31
31
|
dkist_processing_common/models/input_dataset.py,sha256=19w_ydrxdzjJgpnhFELqUomr7GixURjzLOaX41ipOKk,4173
|
|
@@ -34,41 +34,43 @@ dkist_processing_common/models/message_queue_binding.py,sha256=Y4otwkkePrLRSjlry
|
|
|
34
34
|
dkist_processing_common/models/metric_code.py,sha256=WSLF9yqcVzk9L9u8WBhgtpUYUWYsG4ZFWFRFtezdUCM,848
|
|
35
35
|
dkist_processing_common/models/parameters.py,sha256=9An3SxUEBI-oYHjICQ_q-IIScTfpvVeAFH7jLzBzzWI,9649
|
|
36
36
|
dkist_processing_common/models/quality.py,sha256=TmDVbvPbfl5CIIs1ioD5guLUoEOFTfiJESvDjLTLl5s,3981
|
|
37
|
-
dkist_processing_common/models/tags.py,sha256=
|
|
37
|
+
dkist_processing_common/models/tags.py,sha256=emvQDsLwzfzqSvH2CwvOd85DRlb5pBCKgOgzjbEKxlY,12335
|
|
38
38
|
dkist_processing_common/models/task_name.py,sha256=uAl7qTK4Xx1nqPAhNAe5nAXqxwPwQzAq58YmoccX6xQ,567
|
|
39
39
|
dkist_processing_common/models/telemetry.py,sha256=XVcLNgHCZsP9L7oYiklyLUoqQtWt_xjEkuf70Kbudz4,839
|
|
40
40
|
dkist_processing_common/models/wavelength.py,sha256=4UhRVoNvCHZitXo5S1oRdewadbmGfmDK6wetMV06POA,967
|
|
41
41
|
dkist_processing_common/parsers/__init__.py,sha256=XJQzHtPb78F6-qXXKXjyztc0x-aHVlgv1C_l4dR88tI,67
|
|
42
|
-
dkist_processing_common/parsers/average_bud.py,sha256=
|
|
43
|
-
dkist_processing_common/parsers/cs_step.py,sha256=
|
|
42
|
+
dkist_processing_common/parsers/average_bud.py,sha256=mTlrBlo7Pe5WnNmui4wQC24-8QY5hmhHJWvhg9vMrOw,1413
|
|
43
|
+
dkist_processing_common/parsers/cs_step.py,sha256=6SCSbCgVhEGxJIIrCBByWCmIad_vuje28jECFZ6qlZI,6454
|
|
44
44
|
dkist_processing_common/parsers/dsps_repeat.py,sha256=Jg6oI9-PtFQbQHbGul6_eiRzBKr0Z2HIGOitG0G5CD4,1642
|
|
45
45
|
dkist_processing_common/parsers/experiment_id_bud.py,sha256=LUehIqB56hmDwARph1itSUsPenFHScfrrRuZmcCi4xA,960
|
|
46
|
-
dkist_processing_common/parsers/id_bud.py,sha256=
|
|
46
|
+
dkist_processing_common/parsers/id_bud.py,sha256=QvXTOF9kjekNd_M2ZTQwPhhQwoj2m24dqp2OuCNyHB0,2479
|
|
47
47
|
dkist_processing_common/parsers/l0_fits_access.py,sha256=Ol3eo8yyNbGqbN2whhD2jBNoqhOrlwmH8DbMmCLtNk0,1033
|
|
48
48
|
dkist_processing_common/parsers/l1_fits_access.py,sha256=BWojvcFl_RmkrRWHe1WxDCsPeexervlRFPothuXAyoI,4410
|
|
49
|
-
dkist_processing_common/parsers/lookup_bud.py,sha256=
|
|
50
|
-
dkist_processing_common/parsers/near_bud.py,sha256=
|
|
49
|
+
dkist_processing_common/parsers/lookup_bud.py,sha256=IpDtwCsJRiOanDTpoaav3dZXe55WZpYWTnyxIiEWxvk,4047
|
|
50
|
+
dkist_processing_common/parsers/near_bud.py,sha256=_JeH2QODlDDjbdzp7U6B8ROmP2gvXzZrf0MItVnjTT4,3893
|
|
51
51
|
dkist_processing_common/parsers/observing_program_id_bud.py,sha256=foESQTMShcp-aPGZFcLEdXIdi5Y6vFeus-W447olQEc,884
|
|
52
52
|
dkist_processing_common/parsers/proposal_id_bud.py,sha256=VvVoYM-MUivra2fMZOSAOgGQslLROZxFuwHnuAZyAjc,942
|
|
53
53
|
dkist_processing_common/parsers/quality.py,sha256=hhCT-bHODOYSp9jvgsiWfYcLYtQCSWgfuy0xZnkYXwo,1141
|
|
54
|
-
dkist_processing_common/parsers/retarder.py,sha256=
|
|
54
|
+
dkist_processing_common/parsers/retarder.py,sha256=zsOohfMMmK49CnJw1hYavAvCs9WQ4oLEHhiM6v8FnV8,1405
|
|
55
55
|
dkist_processing_common/parsers/single_value_single_key_flower.py,sha256=Xy0_55H2VInGkMKSPOQjcYiMW0DFlDOn27n5jC2PKzE,1358
|
|
56
56
|
dkist_processing_common/parsers/task.py,sha256=nuGxDl5_gjbi07jMOrCPD5J9L51lyZZ6VS25FuDC3V8,3990
|
|
57
|
-
dkist_processing_common/parsers/time.py,sha256=
|
|
58
|
-
dkist_processing_common/parsers/unique_bud.py,sha256=
|
|
57
|
+
dkist_processing_common/parsers/time.py,sha256=4-ifDUFLh-rp5bqmirWSEerqQWGevcfOKQK5iSclbR0,11047
|
|
58
|
+
dkist_processing_common/parsers/unique_bud.py,sha256=RN3Q3IQFUVLlFCWZnS-M_skdBSowb9L8S0lXN1KHwSE,3152
|
|
59
59
|
dkist_processing_common/parsers/wavelength.py,sha256=P5C9mG8DAKK3GB3vWNRBI5l7pAW68lJK-kw-4eqERuQ,612
|
|
60
60
|
dkist_processing_common/tasks/__init__.py,sha256=l23ctjNsKJbHbbqaZBMeOPaOtw0hmITEljI_JJ-CVsU,627
|
|
61
61
|
dkist_processing_common/tasks/assemble_movie.py,sha256=1ixDG-f4ODt0vywqVccG3aodLljVO5OGlvuMO9EEvcU,12767
|
|
62
62
|
dkist_processing_common/tasks/base.py,sha256=itAHCvzcodo-q8_AjpWoRaM86BlcjWDpCIiUP7uwmP0,13236
|
|
63
|
-
dkist_processing_common/tasks/l1_output_data.py,sha256=
|
|
64
|
-
dkist_processing_common/tasks/output_data_base.py,sha256=
|
|
65
|
-
dkist_processing_common/tasks/parse_l0_input_data.py,sha256=
|
|
63
|
+
dkist_processing_common/tasks/l1_output_data.py,sha256=qvOiVyxuqD6efR0PYILERIZ1WPXsJQRIk-hSBf26F5Q,10968
|
|
64
|
+
dkist_processing_common/tasks/output_data_base.py,sha256=lJZ3olayA_nUWbxzozfbIbJFD3j2VpxPMt1CB9LB5IY,4763
|
|
65
|
+
dkist_processing_common/tasks/parse_l0_input_data.py,sha256=xcWmwSKwxEeManltCFrqVG224Vk-BYRE6g32VOK--rI,19241
|
|
66
66
|
dkist_processing_common/tasks/quality_metrics.py,sha256=cvGF6tJ8yAvxOvkeG3tWxYwL885BrFW5X3V7_MSzL-A,12481
|
|
67
67
|
dkist_processing_common/tasks/teardown.py,sha256=rwT9lWINVDF11-az_nx-Z5ykMTX_SJCchobpU6sErgk,2360
|
|
68
|
-
dkist_processing_common/tasks/transfer_input_data.py,sha256=
|
|
68
|
+
dkist_processing_common/tasks/transfer_input_data.py,sha256=4TJqlDjTc503QFvzSmMert99r9KHDwyd72r1kHAVhQA,5879
|
|
69
69
|
dkist_processing_common/tasks/trial_catalog.py,sha256=Yf-BKNCT_OHwJsxxZP8p2eRW04CcY0tw5_YIe1e9RQY,10535
|
|
70
70
|
dkist_processing_common/tasks/trial_output_data.py,sha256=pUdrNlAzuir4AUdfax5_MOplB-A9NrXErMJmAwtJmLA,6811
|
|
71
|
-
dkist_processing_common/tasks/
|
|
71
|
+
dkist_processing_common/tasks/write_extra.py,sha256=1mg7AsFHeDEg_ncgGKv57aHixtbzB7jFc5zPLZ3-89Q,16211
|
|
72
|
+
dkist_processing_common/tasks/write_l1.py,sha256=upsaFN3S0r4MasrzjZ6i0gNF_bvQLf_oyYoRogB7odc,21163
|
|
73
|
+
dkist_processing_common/tasks/write_l1_base.py,sha256=iqejlYb3CSagUyi6U56nmgItzrwcQxLIDwgruxZho3A,2474
|
|
72
74
|
dkist_processing_common/tasks/mixin/__init__.py,sha256=-g-DQbU7m1bclJYuFe3Yh757V-35GIDTbstardKQ7nU,68
|
|
73
75
|
dkist_processing_common/tasks/mixin/globus.py,sha256=ugejtZ_MR5LesQYuXM1uICd_yWDE7cZZr0qnWCh75R8,6732
|
|
74
76
|
dkist_processing_common/tasks/mixin/interservice_bus.py,sha256=M6R922l7gJSmmU_vswUXxy-c5DWNrIRjQu9H9CSgGfU,1081
|
|
@@ -83,36 +85,37 @@ dkist_processing_common/tests/mock_metadata_store.py,sha256=i41xu5AY4A566YT0qSzh
|
|
|
83
85
|
dkist_processing_common/tests/test_assemble_movie.py,sha256=dyVhowxB-Kc6GuxlDs74UrPtK9fwdUL7y5haA3Bidz0,4065
|
|
84
86
|
dkist_processing_common/tests/test_assemble_quality.py,sha256=-F22jMY6mPy65VZ1TZY2r1vsxMXOPmZHArGx70OD3BA,17832
|
|
85
87
|
dkist_processing_common/tests/test_base.py,sha256=gsyBG2R6Ufx7CzbHeGMagUwM9yCfpN4gCSZ6-aH2q48,6643
|
|
86
|
-
dkist_processing_common/tests/test_codecs.py,sha256=
|
|
88
|
+
dkist_processing_common/tests/test_codecs.py,sha256=WpF15UYklpNRgETI4EwXsgbNzxMcHlelfpprBbupC0I,23907
|
|
87
89
|
dkist_processing_common/tests/test_constants.py,sha256=I_KcJs7ScCn53GYhEO6qjWrrnfZuyC1IVYOy87Pjlg4,6565
|
|
90
|
+
dkist_processing_common/tests/test_construct_dataset_extras.py,sha256=dss_RXQu0xfOiiuHDCeI0rGrUlDCfgNHKQ7VwkN6HqU,9318
|
|
88
91
|
dkist_processing_common/tests/test_cs_step.py,sha256=RA0QD3D8eaL3YSOL_gIJ9wkngy14RQ2jbD-05KAziW4,2408
|
|
89
92
|
dkist_processing_common/tests/test_dkist_location.py,sha256=-_OoSw4SZDLFyIuOltHvM6PQjxm5hTiJQsiTGZ8Sadc,456
|
|
90
93
|
dkist_processing_common/tests/test_fits_access.py,sha256=a50B4IAAH5NH5zeudTqyy0b5uWKJwJuzQLUdK1LoOHM,12832
|
|
91
|
-
dkist_processing_common/tests/test_flower_pot.py,sha256=
|
|
94
|
+
dkist_processing_common/tests/test_flower_pot.py,sha256=ykt7H2HF2hq4fln0GojYbFPwZKzIO7B9Rp6tJCE5Fn4,7447
|
|
92
95
|
dkist_processing_common/tests/test_fried_parameter.py,sha256=iXtlQIifZ6cDOkEi-YDgP3oAlss2loq08Uohgvy1byQ,1295
|
|
93
96
|
dkist_processing_common/tests/test_input_dataset.py,sha256=wnQbZxBYywG5CEXces2WWk6I0QA7HjStaYSTVVbe5r0,8499
|
|
94
97
|
dkist_processing_common/tests/test_interservice_bus.py,sha256=QrBeZ8dh497h6nxA8-aVUIGDcSj8y9DIXIk9I_HkXr0,3001
|
|
95
98
|
dkist_processing_common/tests/test_interservice_bus_mixin.py,sha256=IptJkW7Qeu2Y742NKXEgkok2VdS600keLgCD3Y9iw3A,4131
|
|
96
99
|
dkist_processing_common/tests/test_manual_processing.py,sha256=iHF7yQPlar9niYAGXtFv28Gw3Undlds38yMfszk4ccY,1037
|
|
97
|
-
dkist_processing_common/tests/test_output_data_base.py,sha256=
|
|
100
|
+
dkist_processing_common/tests/test_output_data_base.py,sha256=VoXW7g5yE2Lzb-HpyhVQYbPpiCZ7YYQAuShoAFVO5nE,3983
|
|
98
101
|
dkist_processing_common/tests/test_parameters.py,sha256=CUEUIGBPMCUXPll0G0UxFDbMXi8lmnjRwXBarGX1PAQ,14033
|
|
99
|
-
dkist_processing_common/tests/test_parse_l0_input_data.py,sha256=
|
|
102
|
+
dkist_processing_common/tests/test_parse_l0_input_data.py,sha256=7yn1VGwC3S-0JOYIMflNHhaXEnPhwjJtewD2WxBgugM,13239
|
|
100
103
|
dkist_processing_common/tests/test_publish_catalog_messages.py,sha256=7WRsEwoLHGeaCmLTAW4tU_BlZw0e3hwx65uWSGzfuYE,2393
|
|
101
104
|
dkist_processing_common/tests/test_quality.py,sha256=IPz7liXcmoqWIsY78oX07Ui0nWHxoUH2FbKGEmMle7E,10258
|
|
102
105
|
dkist_processing_common/tests/test_quality_mixin.py,sha256=L-_kSIKs8A48LGt9QaItZWZqIcRF0MhBCAZQZYdSflk,55575
|
|
103
106
|
dkist_processing_common/tests/test_scratch.py,sha256=WO8C1VJlkcC5IzST9Hj08CyyrINwYcN8pyteD9x38xs,16482
|
|
104
|
-
dkist_processing_common/tests/test_stems.py,sha256=
|
|
107
|
+
dkist_processing_common/tests/test_stems.py,sha256=sNRNsyBdQYSk8a70MPLJ99hX7mA-vbIoUcN9srmQe_o,39917
|
|
105
108
|
dkist_processing_common/tests/test_submit_dataset_metadata.py,sha256=-UicRcyRQAC9H3sbTYlJaH4-Yn6jKNyQEZhzZxojzqw,3543
|
|
106
109
|
dkist_processing_common/tests/test_tags.py,sha256=w5gmVfp3Ck92KNV80lJQRMz0OYgTYzWtwVUFWv1b5i8,5024
|
|
107
110
|
dkist_processing_common/tests/test_task_name.py,sha256=kqFr59XX2K87xzfTlClzDV4-Je1dx72LvdaJ22UE8UU,1233
|
|
108
111
|
dkist_processing_common/tests/test_task_parsing.py,sha256=2_OOmeZQWD17XAd_ECYmodJzD_iRIBKjCYdGh38BOx4,4421
|
|
109
112
|
dkist_processing_common/tests/test_teardown.py,sha256=DaliHSGsiQBZaFkf5wb3XBo6rHNPmx2bmQtVymYeBN4,5601
|
|
110
113
|
dkist_processing_common/tests/test_transfer_input_data.py,sha256=eyAAWXpTHQ8aew87-MncWpYBn4DAZrTSOL3LvlQfR5Q,12611
|
|
111
|
-
dkist_processing_common/tests/test_transfer_l1_output_data.py,sha256=
|
|
112
|
-
dkist_processing_common/tests/test_trial_catalog.py,sha256=
|
|
114
|
+
dkist_processing_common/tests/test_transfer_l1_output_data.py,sha256=OV2XMEkCbEuL9_i2S3P9Jfyf15tcBkAP3JNE8Jn_A9k,2137
|
|
115
|
+
dkist_processing_common/tests/test_trial_catalog.py,sha256=290h3cr_ToNtYOm9ze8xQQz9d82sF9XLqmyf9_L7g34,9554
|
|
113
116
|
dkist_processing_common/tests/test_trial_output_data.py,sha256=fu3iGNV_FI8LOacezyt4HvXnxY3g1_UiBuRI63yz5Oo,11977
|
|
114
|
-
dkist_processing_common/tests/test_workflow_task_base.py,sha256=
|
|
115
|
-
dkist_processing_common/tests/test_write_l1.py,sha256=
|
|
117
|
+
dkist_processing_common/tests/test_workflow_task_base.py,sha256=LTVusltNrsGUOvw9G323am4CXebgE4tJhP6gZCcS0CQ,10457
|
|
118
|
+
dkist_processing_common/tests/test_write_l1.py,sha256=qraecD9Vv6jsqg00XOSlM1IdK9l8i36VoHLoLj8ypiU,27918
|
|
116
119
|
docs/Makefile,sha256=qnlVz6PuBqE39NfHWuUnHhNEA-EFgT2-WJNNNy9ttfk,4598
|
|
117
120
|
docs/changelog.rst,sha256=S2jPASsWlQxSlAPqdvNrYvhk9k3FcFWNXFNDYXBSjl4,120
|
|
118
121
|
docs/conf.py,sha256=7W2iHKs3J5RhAz0JZafC_UnfMvcpZN7j4LLUmQtk2D0,1891
|
|
@@ -121,7 +124,7 @@ docs/landing_page.rst,sha256=aPAuXFhBx73lEZ59B6E6JXxkK0LlxzD0n-HXqHrfumQ,746
|
|
|
121
124
|
docs/make.bat,sha256=mBAhtURwhQ7yc95pqwJzlhqBSvRknr1aqZ5s8NKvdKs,4513
|
|
122
125
|
docs/requirements.txt,sha256=Kbl_X4c7RQZw035YTeNB63We6I7pvXFU4T0Uflp2yDY,29
|
|
123
126
|
licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
|
|
124
|
-
dkist_processing_common-12.0.
|
|
125
|
-
dkist_processing_common-12.0.
|
|
126
|
-
dkist_processing_common-12.0.
|
|
127
|
-
dkist_processing_common-12.0.
|
|
127
|
+
dkist_processing_common-12.2.0.dist-info/METADATA,sha256=z2dP61XdZiapHC3zbjS9kVZncQsd9zkfHd43Aosw4aQ,14211
|
|
128
|
+
dkist_processing_common-12.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
129
|
+
dkist_processing_common-12.2.0.dist-info/top_level.txt,sha256=LJhd1W-Vn90K8HnQDIE4r52YDpUjjMWDnllAWHBByW0,48
|
|
130
|
+
dkist_processing_common-12.2.0.dist-info/RECORD,,
|
changelog/288.misc.rst
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Upgrade dkist-processing-core to 7.0.0 which includes an upgrade of Airflow to 3.1.5 and python >= 3.13.
|
|
File without changes
|