dkist-processing-common 11.7.0rc1__py3-none-any.whl → 11.7.0rc2__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.
@@ -79,25 +79,18 @@ class BudName(StrEnum):
79
79
  polcal_average_telescope_azimuth = "POLCAL_AVERAGE_TELESCOPE_AZIMUTH"
80
80
  dark_gos_level3_status = "DARK_GOS_LEVEL3_STATUS"
81
81
  solar_gain_gos_level3_status = "SOLAR_GAIN_GOS_LEVEL3_STATUS"
82
- polcal_gos_level3_status = "POLCAL_GOS_LEVEL3_STATUS"
83
82
  dark_gos_level3_lamp_status = "DARK_GOS_LEVEL3_LAMP_STATUS"
84
83
  solar_gain_gos_level3_lamp_status = "SOLAR_GAIN_GOS_LEVEL3_LAMP_STATUS"
85
- polcal_gos_level3_lamp_status = "POLCAL_GOS_LEVEL3_LAMP_STATUS"
86
84
  dark_gos_polarizer_status = "DARK_GOS_POLARIZER_STATUS"
87
85
  solar_gain_gos_polarizer_status = "SOLAR_GAIN_GOS_POLARIZER_STATUS"
88
- polcal_gos_polarizer_status = "POLCAL_GOS_POLARIZER_STATUS"
89
86
  dark_gos_polarizer_angle = "DARK_GOS_POLARIZER_ANGLE"
90
87
  solar_gain_gos_polarizer_angle = "SOLAR_GAIN_GOS_POLARIZER_ANGLE"
91
- polcal_gos_polarizer_angle = "POLCAL_GOS_POLARIZER_ANGLE"
92
88
  dark_gos_retarder_status = "DARK_GOS_RETARDER_STATUS"
93
89
  solar_gain_gos_retarder_status = "SOLAR_GAIN_GOS_RETARDER_STATUS"
94
- polcal_gos_retarder_status = "POLCAL_GOS_RETARDER_STATUS"
95
90
  dark_gos_retarder_angle = "DARK_GOS_RETARDER_ANGLE"
96
91
  solar_gain_gos_retarder_angle = "SOLAR_GAIN_GOS_RETARDER_ANGLE"
97
- polcal_gos_retarder_angle = "POLCAL_GOS_RETARDER_ANGLE"
98
92
  dark_gos_level0_status = "DARK_GOS_LEVEL0_STATUS"
99
93
  solar_gain_gos_level0_status = "SOLAR_GAIN_GOS_LEVEL0_STATUS"
100
- polcal_gos_level0_status = "POLCAL_GOS_LEVEL0_STATUS"
101
94
 
102
95
 
103
96
  class ConstantsBase:
@@ -156,7 +149,7 @@ class ConstantsBase:
156
149
  return Sqids(min_length=6, alphabet=ascii_uppercase).encode([self._recipe_run_id])
157
150
 
158
151
  @property
159
- def stokes_params(self) -> [str]:
152
+ def stokes_params(self) -> list[str]:
160
153
  """Return the list of stokes parameter names."""
161
154
  return ["I", "Q", "U", "V"]
162
155
 
@@ -186,7 +179,7 @@ class ConstantsBase:
186
179
  return self._db_dict[BudName.proposal_id]
187
180
 
188
181
  @property
189
- def contributing_proposal_ids(self) -> [str]:
182
+ def contributing_proposal_ids(self) -> list[str]:
190
183
  """Return the list of contributing proposal IDs."""
191
184
  proposal_ids = self._db_dict[BudName.contributing_proposal_ids]
192
185
  return list(proposal_ids)
@@ -197,7 +190,7 @@ class ConstantsBase:
197
190
  return self._db_dict[BudName.experiment_id]
198
191
 
199
192
  @property
200
- def contributing_experiment_ids(self) -> [str]:
193
+ def contributing_experiment_ids(self) -> list[str]:
201
194
  """Return the list of contributing experiment IDs."""
202
195
  experiment_ids = self._db_dict[BudName.contributing_experiment_ids]
203
196
  return list(experiment_ids)
@@ -233,13 +226,13 @@ class ConstantsBase:
233
226
  return self._db_dict[BudName.num_dsps_repeats]
234
227
 
235
228
  @property
236
- def dark_exposure_times(self) -> [float]:
229
+ def dark_exposure_times(self) -> list[float]:
237
230
  """Get a list of exposure times used in the dark calibration."""
238
231
  exposure_times = self._db_dict[BudName.dark_exposure_times]
239
232
  return list(exposure_times)
240
233
 
241
234
  @property
242
- def dark_readout_exp_times(self) -> [float]:
235
+ def dark_readout_exp_times(self) -> list[float]:
243
236
  """Get a list of readout exp times for all dark frames."""
244
237
  readout_times = self._db_dict[BudName.dark_readout_exp_times]
245
238
  return list(readout_times)
@@ -292,19 +285,19 @@ class ConstantsBase:
292
285
  # Multi-task constants start here:
293
286
 
294
287
  @property
295
- def dark_observing_program_execution_id(self) -> [str]:
288
+ def dark_observing_program_execution_id(self) -> list[str]:
296
289
  """Return the observing program execution id constant for the dark task."""
297
290
  observing_programs = self._db_dict[BudName.dark_observing_program_execution_id]
298
291
  return list(observing_programs)
299
292
 
300
293
  @property
301
- def solar_gain_observing_program_execution_id(self) -> [str]:
294
+ def solar_gain_observing_program_execution_id(self) -> list[str]:
302
295
  """Return the observing program execution id constant for the solar_gain task."""
303
296
  observing_programs = self._db_dict[BudName.solar_gain_observing_program_execution_id]
304
297
  return list(observing_programs)
305
298
 
306
299
  @property
307
- def polcal_observing_program_execution_id(self) -> [str]:
300
+ def polcal_observing_program_execution_id(self) -> list[str]:
308
301
  """Return the observing program execution id constant."""
309
302
  observing_programs = self._db_dict[BudName.polcal_observing_program_execution_id]
310
303
  return list(observing_programs)
@@ -469,11 +462,6 @@ class ConstantsBase:
469
462
  """Return the gos level3 status constant for the solar gain task."""
470
463
  return self._db_dict[BudName.solar_gain_gos_level3_status]
471
464
 
472
- @property
473
- def polcal_gos_level3_status(self) -> str:
474
- """Return the gos level3 status constant for the polcal task."""
475
- return self._db_dict[BudName.polcal_gos_level3_status]
476
-
477
465
  @property
478
466
  def dark_gos_level3_lamp_status(self) -> str:
479
467
  """Return the gos level3 lamp status constant for the dark task."""
@@ -484,11 +472,6 @@ class ConstantsBase:
484
472
  """Return the gos level3 lamp status constant for the solar gain task."""
485
473
  return self._db_dict[BudName.solar_gain_gos_level3_lamp_status]
486
474
 
487
- @property
488
- def polcal_gos_level3_lamp_status(self) -> str:
489
- """Return the gos level3 lamp status constant for the polcal task."""
490
- return self._db_dict[BudName.polcal_gos_level3_lamp_status]
491
-
492
475
  @property
493
476
  def dark_gos_polarizer_status(self) -> str:
494
477
  """Return the gos polarizer status constant for the dark task."""
@@ -499,11 +482,6 @@ class ConstantsBase:
499
482
  """Return the gos polarizer status constant for the solar gain task."""
500
483
  return self._db_dict[BudName.solar_gain_gos_polarizer_status]
501
484
 
502
- @property
503
- def polcal_gos_polarizer_status(self) -> str:
504
- """Return the gos polarizer status constant for the polcal task."""
505
- return self._db_dict[BudName.polcal_gos_polarizer_status]
506
-
507
485
  @property
508
486
  def dark_gos_polarizer_angle(self) -> float:
509
487
  """Return the gos polarizer angle constant for the dark task."""
@@ -514,11 +492,6 @@ class ConstantsBase:
514
492
  """Return the gos polarizer angle constant for the solar gain task."""
515
493
  return self._db_dict[BudName.solar_gain_gos_polarizer_angle]
516
494
 
517
- @property
518
- def polcal_gos_polarizer_angle(self) -> float:
519
- """Return the gos polarizer angle constant for the polcal task."""
520
- return self._db_dict[BudName.polcal_gos_polarizer_angle]
521
-
522
495
  @property
523
496
  def dark_gos_retarder_status(self) -> str:
524
497
  """Return the gos retarder status constant for the dark task."""
@@ -529,11 +502,6 @@ class ConstantsBase:
529
502
  """Return the gos retarder status constant for the solar gain task."""
530
503
  return self._db_dict[BudName.solar_gain_gos_retarder_status]
531
504
 
532
- @property
533
- def polcal_gos_retarder_status(self) -> str:
534
- """Return the gos retarder status constant for the polcal task."""
535
- return self._db_dict[BudName.polcal_gos_retarder_status]
536
-
537
505
  @property
538
506
  def dark_gos_retarder_angle(self) -> float:
539
507
  """Return the gos retarder angle constant for the dark task."""
@@ -544,11 +512,6 @@ class ConstantsBase:
544
512
  """Return the gos retarder angle constant for the solar gain task."""
545
513
  return self._db_dict[BudName.solar_gain_gos_retarder_angle]
546
514
 
547
- @property
548
- def polcal_gos_retarder_angle(self) -> float:
549
- """Return the gos retarder angle constant for the polcal task."""
550
- return self._db_dict[BudName.polcal_gos_retarder_angle]
551
-
552
515
  @property
553
516
  def dark_gos_level0_status(self) -> str:
554
517
  """Return the gos level0 status constant for the dark task."""
@@ -558,8 +521,3 @@ class ConstantsBase:
558
521
  def solar_gain_gos_level0_status(self) -> str:
559
522
  """Return the gos level0 status constant for the solar gain task."""
560
523
  return self._db_dict[BudName.solar_gain_gos_level0_status]
561
-
562
- @property
563
- def polcal_gos_level0_status(self) -> str:
564
- """Return the gos level0 status constant for the polcal task."""
565
- return self._db_dict[BudName.polcal_gos_level0_status]
@@ -6,10 +6,8 @@ from typing import Type
6
6
 
7
7
  from dkist_processing_common.models.flower_pot import SpilledDirt
8
8
  from dkist_processing_common.models.flower_pot import Stem
9
- from dkist_processing_common.models.task_name import TaskName
10
9
  from dkist_processing_common.parsers.l0_fits_access import L0FitsAccess
11
10
  from dkist_processing_common.parsers.task import passthrough_header_ip_task
12
- from dkist_processing_common.parsers.unique_bud import TaskUniqueBud
13
11
 
14
12
 
15
13
  class ContributingIdsBud(Stem):
@@ -172,11 +172,6 @@ def dataset_extra_bud_factory() -> list[S]:
172
172
  metadata_key=MetadataKey.gos_level3_status,
173
173
  ip_task_types=TaskName.solar_gain,
174
174
  ),
175
- TaskUniqueBud(
176
- constant_name=BudName.polcal_gos_level3_status,
177
- metadata_key=MetadataKey.gos_level3_status,
178
- ip_task_types=TaskName.polcal,
179
- ),
180
175
  TaskUniqueBud(
181
176
  constant_name=BudName.dark_gos_level3_lamp_status,
182
177
  metadata_key=MetadataKey.gos_level3_lamp_status,
@@ -187,11 +182,6 @@ def dataset_extra_bud_factory() -> list[S]:
187
182
  metadata_key=MetadataKey.gos_level3_lamp_status,
188
183
  ip_task_types=TaskName.solar_gain,
189
184
  ),
190
- TaskUniqueBud(
191
- constant_name=BudName.polcal_gos_level3_lamp_status,
192
- metadata_key=MetadataKey.gos_level3_lamp_status,
193
- ip_task_types=TaskName.polcal,
194
- ),
195
185
  TaskUniqueBud(
196
186
  constant_name=BudName.dark_gos_polarizer_status,
197
187
  metadata_key=MetadataKey.gos_polarizer_status,
@@ -202,11 +192,6 @@ def dataset_extra_bud_factory() -> list[S]:
202
192
  metadata_key=MetadataKey.gos_polarizer_status,
203
193
  ip_task_types=TaskName.solar_gain,
204
194
  ),
205
- TaskUniqueBud(
206
- constant_name=BudName.polcal_gos_polarizer_status,
207
- metadata_key=MetadataKey.gos_polarizer_status,
208
- ip_task_types=TaskName.polcal,
209
- ),
210
195
  TaskUniqueBud(
211
196
  constant_name=BudName.dark_gos_polarizer_angle,
212
197
  metadata_key=MetadataKey.gos_polarizer_angle,
@@ -217,11 +202,6 @@ def dataset_extra_bud_factory() -> list[S]:
217
202
  metadata_key=MetadataKey.gos_polarizer_angle,
218
203
  ip_task_types=TaskName.solar_gain,
219
204
  ),
220
- TaskUniqueBud(
221
- constant_name=BudName.polcal_gos_polarizer_angle,
222
- metadata_key=MetadataKey.gos_polarizer_angle,
223
- ip_task_types=TaskName.polcal,
224
- ),
225
205
  TaskUniqueBud(
226
206
  constant_name=BudName.dark_gos_retarder_status,
227
207
  metadata_key=MetadataKey.gos_retarder_status,
@@ -232,11 +212,6 @@ def dataset_extra_bud_factory() -> list[S]:
232
212
  metadata_key=MetadataKey.gos_retarder_status,
233
213
  ip_task_types=TaskName.solar_gain,
234
214
  ),
235
- TaskUniqueBud(
236
- constant_name=BudName.polcal_gos_retarder_status,
237
- metadata_key=MetadataKey.gos_retarder_status,
238
- ip_task_types=TaskName.polcal,
239
- ),
240
215
  TaskUniqueBud(
241
216
  constant_name=BudName.dark_gos_retarder_angle,
242
217
  metadata_key=MetadataKey.gos_retarder_angle,
@@ -247,11 +222,6 @@ def dataset_extra_bud_factory() -> list[S]:
247
222
  metadata_key=MetadataKey.gos_retarder_angle,
248
223
  ip_task_types=TaskName.solar_gain,
249
224
  ),
250
- TaskUniqueBud(
251
- constant_name=BudName.polcal_gos_retarder_angle,
252
- metadata_key=MetadataKey.gos_retarder_angle,
253
- ip_task_types=TaskName.polcal,
254
- ),
255
225
  TaskUniqueBud(
256
226
  constant_name=BudName.dark_gos_level0_status,
257
227
  metadata_key=MetadataKey.gos_level0_status,
@@ -262,11 +232,6 @@ def dataset_extra_bud_factory() -> list[S]:
262
232
  metadata_key=MetadataKey.gos_level0_status,
263
233
  ip_task_types=TaskName.solar_gain,
264
234
  ),
265
- TaskUniqueBud(
266
- constant_name=BudName.polcal_gos_level0_status,
267
- metadata_key=MetadataKey.gos_level0_status,
268
- ip_task_types=TaskName.polcal,
269
- ),
270
235
  TaskAverageBud(
271
236
  constant_name=BudName.dark_average_light_level,
272
237
  metadata_key=MetadataKey.light_level,
@@ -260,7 +260,7 @@ def test_subclass_flowers(visp_parse_inputs_task, max_cs_step_time_sec):
260
260
  tag_pot, constant_pot = visp_parse_inputs_task.make_flower_pots()
261
261
 
262
262
  assert len(tag_pot.stems) == 1
263
- assert len(constant_pot.stems) == 71
263
+ assert len(constant_pot.stems) == 64
264
264
  all_flower_names = [StemName.modstate]
265
265
  assert sorted([f.stem_name for f in tag_pot.stems]) == sorted(all_flower_names)
266
266
  all_bud_names = [b.stem_name for b in default_constant_bud_factory()] + [BudName.num_modstates]
@@ -271,7 +271,7 @@ def test_dataset_extra_bud_factory(visp_parse_inputs_task, max_cs_step_time_sec)
271
271
  """
272
272
  Given: ParseInputData child class with custom stems
273
273
  When: Making the constant pot
274
- Then: The multi-task dataset extra buds are all created
274
+ Then: The multi-task dataset extra buds are created
275
275
  """
276
276
  _, constant_pot = visp_parse_inputs_task.make_flower_pots()
277
277
  stem_names = [f.stem_name.value for f in constant_pot.stems]
@@ -294,11 +294,11 @@ def test_dataset_extra_bud_factory(visp_parse_inputs_task, max_cs_step_time_sec)
294
294
  "GOS_RETARDER_ANGLE",
295
295
  "GOS_LEVEL0_STATUS",
296
296
  ]
297
- bud_name_prefix = ["DARK_", "SOLAR_GAIN_", "POLCAL_"]
298
- for prefix in bud_name_prefix:
299
- for base in bud_name_base:
300
- print(prefix + base)
301
- assert prefix + base in stem_names
297
+ for base in bud_name_base:
298
+ assert "DARK_" + base in stem_names
299
+ assert "SOLAR_GAIN_" + base in stem_names
300
+ if "GOS" not in base:
301
+ assert "POLCAL_" + base in stem_names
302
302
 
303
303
 
304
304
  def test_constants_correct(parse_inputs_task):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dkist-processing-common
3
- Version: 11.7.0rc1
3
+ Version: 11.7.0rc2
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
@@ -27,7 +27,7 @@ dkist_processing_common/codecs/str.py,sha256=Xqt5k8IhLc95KiiNiFwB1JWcVVc6T8AfcLr
27
27
  dkist_processing_common/fonts/Lato-Regular.ttf,sha256=1jbkaDIx-THtoiLViOlE0IK_0726AvkovuRhwPGFslE,656568
28
28
  dkist_processing_common/fonts/__init__.py,sha256=hBvZRtkoGRPlNDWCK-ZePXdSIlThCcjwBDfYaamVgAw,101
29
29
  dkist_processing_common/models/__init__.py,sha256=6LMqemdzVZ87fRrpAsbEnTtWZ02_Gu_oajsUlwGRH_Q,74
30
- dkist_processing_common/models/constants.py,sha256=WL-9j4RVxEoTTeZ0Sl1lgoW2JD_Gd624cBM_KYA8kfk,22702
30
+ dkist_processing_common/models/constants.py,sha256=zwDHNmRUajbTg6-FUYqzbT07kIMipNyLRqKn36Rf_rA,20873
31
31
  dkist_processing_common/models/dkist_location.py,sha256=6Nk0wvv4R8ptlrV7BXon7abq4YLvmTdUmPsDN5G8nWc,971
32
32
  dkist_processing_common/models/fits_access.py,sha256=imKqL4-_g6gTR-IeIjZ6qkMhQX3JujdrKFrTd9gOXnw,5605
33
33
  dkist_processing_common/models/flower_pot.py,sha256=_J7DwHM8u5kQfdPCpk5pUmALtLrM1L_h-x8JW5BSjXA,5129
@@ -48,7 +48,7 @@ dkist_processing_common/parsers/average_bud.py,sha256=86zgcgLdDd8_Stf4RhZ9wfsmeu
48
48
  dkist_processing_common/parsers/cs_step.py,sha256=rL2gdstKEV5aqdPDs3a5EuUaOT_6YXDJVqIPIVKSw8M,6450
49
49
  dkist_processing_common/parsers/dsps_repeat.py,sha256=Jg6oI9-PtFQbQHbGul6_eiRzBKr0Z2HIGOitG0G5CD4,1642
50
50
  dkist_processing_common/parsers/experiment_id_bud.py,sha256=LUehIqB56hmDwARph1itSUsPenFHScfrrRuZmcCi4xA,960
51
- dkist_processing_common/parsers/id_bud.py,sha256=-VlMQq-6pVx0o_NretmCthI7X1R14UMQhFpjUBBwKpg,2471
51
+ dkist_processing_common/parsers/id_bud.py,sha256=dWNr-njRqDzTnXa2WLZQEb48ul7RdeGzSsURt74978w,2340
52
52
  dkist_processing_common/parsers/l0_fits_access.py,sha256=Ol3eo8yyNbGqbN2whhD2jBNoqhOrlwmH8DbMmCLtNk0,1033
53
53
  dkist_processing_common/parsers/l1_fits_access.py,sha256=BWojvcFl_RmkrRWHe1WxDCsPeexervlRFPothuXAyoI,4410
54
54
  dkist_processing_common/parsers/near_bud.py,sha256=ithuQpnAaK5MDXFhMPNoNIGuF2M94q0n6_qofGl-CdU,4006
@@ -65,7 +65,7 @@ dkist_processing_common/tasks/assemble_movie.py,sha256=1ixDG-f4ODt0vywqVccG3aodL
65
65
  dkist_processing_common/tasks/base.py,sha256=itAHCvzcodo-q8_AjpWoRaM86BlcjWDpCIiUP7uwmP0,13236
66
66
  dkist_processing_common/tasks/l1_output_data.py,sha256=D4S3kH2uRKp1b8_xF2YiWO_mGj19UJS5wKQZ4OdatGs,10568
67
67
  dkist_processing_common/tasks/output_data_base.py,sha256=r1Bu3FX5zTVj66GTMWtaV_NdhxjyjSm661Bt2Mxmfi4,3685
68
- dkist_processing_common/tasks/parse_l0_input_data.py,sha256=2gK_g_s2UG3b8FJHu-WjuEmwdbC5ZOnza1a62o8q4eU,19790
68
+ dkist_processing_common/tasks/parse_l0_input_data.py,sha256=Oiqbj5ZG1z06VB0KYtzY4Ko3Aj9ue-Bj9joW6YCeYDY,18413
69
69
  dkist_processing_common/tasks/quality_metrics.py,sha256=cvGF6tJ8yAvxOvkeG3tWxYwL885BrFW5X3V7_MSzL-A,12481
70
70
  dkist_processing_common/tasks/teardown.py,sha256=rwT9lWINVDF11-az_nx-Z5ykMTX_SJCchobpU6sErgk,2360
71
71
  dkist_processing_common/tasks/transfer_input_data.py,sha256=DAYfS-B1o-iBT9MXU-TiJG4Hv05Z0c_JzPrnFgvnK9g,5786
@@ -99,7 +99,7 @@ dkist_processing_common/tests/test_interservice_bus_mixin.py,sha256=IptJkW7Qeu2Y
99
99
  dkist_processing_common/tests/test_manual_processing.py,sha256=iHF7yQPlar9niYAGXtFv28Gw3Undlds38yMfszk4ccY,1037
100
100
  dkist_processing_common/tests/test_output_data_base.py,sha256=D8b1XKvbE3C5cGOiHq58yJ2pzQL3iL0wLZy_AkDdB9Y,3085
101
101
  dkist_processing_common/tests/test_parameters.py,sha256=CUEUIGBPMCUXPll0G0UxFDbMXi8lmnjRwXBarGX1PAQ,14033
102
- dkist_processing_common/tests/test_parse_l0_input_data.py,sha256=BiJZ_PrxOvaKW_l2yGyq7b7R4-SobkXEGqimYP5qmUw,11698
102
+ dkist_processing_common/tests/test_parse_l0_input_data.py,sha256=I2djQFvFTpI9XaHwig8ig9r3DBCA6mamzscRISavc-k,11691
103
103
  dkist_processing_common/tests/test_publish_catalog_messages.py,sha256=l6Wga1s2wNBIf4wGZ78ZIO_rtqjdidmtvlN9nMnQUAs,3222
104
104
  dkist_processing_common/tests/test_quality.py,sha256=IPz7liXcmoqWIsY78oX07Ui0nWHxoUH2FbKGEmMle7E,10258
105
105
  dkist_processing_common/tests/test_quality_mixin.py,sha256=qanm3SXEiLb0OJDawbh8ixVAG9uRglFMzwxTeYxkDsM,55369
@@ -124,7 +124,7 @@ docs/landing_page.rst,sha256=aPAuXFhBx73lEZ59B6E6JXxkK0LlxzD0n-HXqHrfumQ,746
124
124
  docs/make.bat,sha256=mBAhtURwhQ7yc95pqwJzlhqBSvRknr1aqZ5s8NKvdKs,4513
125
125
  docs/requirements.txt,sha256=Kbl_X4c7RQZw035YTeNB63We6I7pvXFU4T0Uflp2yDY,29
126
126
  licenses/LICENSE.rst,sha256=piZaQplkzOMmH1NXg6QIdo9wwo9pPCoHkvm2-DmH76E,1462
127
- dkist_processing_common-11.7.0rc1.dist-info/METADATA,sha256=MAf4p2v2jbVnAIVzWs-XL_G8JyykR0iQoh7F7wOoekA,13316
128
- dkist_processing_common-11.7.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
129
- dkist_processing_common-11.7.0rc1.dist-info/top_level.txt,sha256=LJhd1W-Vn90K8HnQDIE4r52YDpUjjMWDnllAWHBByW0,48
130
- dkist_processing_common-11.7.0rc1.dist-info/RECORD,,
127
+ dkist_processing_common-11.7.0rc2.dist-info/METADATA,sha256=FuC_RGqyudDzG84A-n0Jo2JFgFot8c83EgvgXziplM0,13316
128
+ dkist_processing_common-11.7.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
129
+ dkist_processing_common-11.7.0rc2.dist-info/top_level.txt,sha256=LJhd1W-Vn90K8HnQDIE4r52YDpUjjMWDnllAWHBByW0,48
130
+ dkist_processing_common-11.7.0rc2.dist-info/RECORD,,