dkist-processing-test 1.34.1rc3__py3-none-any.whl → 1.34.3__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.
Potentially problematic release.
This version of dkist-processing-test might be problematic. Click here for more details.
- dkist_processing_test/__init__.py +0 -1
- dkist_processing_test/config.py +1 -0
- dkist_processing_test/tasks/exercise_numba.py +1 -0
- dkist_processing_test/tasks/fail.py +1 -0
- dkist_processing_test/tasks/fake_science.py +1 -0
- dkist_processing_test/tasks/high_memory.py +1 -0
- dkist_processing_test/tasks/manual.py +1 -1
- dkist_processing_test/tasks/movie.py +1 -1
- dkist_processing_test/tasks/noop.py +1 -0
- dkist_processing_test/tasks/parse.py +1 -0
- dkist_processing_test/tasks/quality.py +1 -0
- dkist_processing_test/tests/conftest.py +1 -0
- dkist_processing_test/tests/test_tasks.py +2 -1
- dkist_processing_test/tests/test_workflows.py +1 -0
- dkist_processing_test/workflows/common_tasks.py +1 -0
- dkist_processing_test/workflows/end_to_end.py +1 -0
- dkist_processing_test/workflows/fail.py +1 -1
- dkist_processing_test/workflows/noop.py +1 -1
- dkist_processing_test/workflows/resource_queue.py +1 -1
- dkist_processing_test/workflows/trial_end_to_end.py +1 -0
- {dkist_processing_test-1.34.1rc3.dist-info → dkist_processing_test-1.34.3.dist-info}/METADATA +31 -31
- dkist_processing_test-1.34.3.dist-info/RECORD +32 -0
- dkist_processing_test-1.34.1rc3.dist-info/RECORD +0 -32
- {dkist_processing_test-1.34.1rc3.dist-info → dkist_processing_test-1.34.3.dist-info}/WHEEL +0 -0
- {dkist_processing_test-1.34.1rc3.dist-info → dkist_processing_test-1.34.3.dist-info}/top_level.txt +0 -0
dkist_processing_test/config.py
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Tasks simulating manual intervention.
|
|
3
3
|
Manual tasks are expected to write provenance records regardless of they always record provenance.
|
|
4
4
|
"""
|
|
5
|
-
from dkist_processing_common.tasks import WorkflowTaskBase
|
|
6
5
|
|
|
6
|
+
from dkist_processing_common.tasks import WorkflowTaskBase
|
|
7
7
|
|
|
8
8
|
__all__ = ["ManualWithProvenance", "ManualWithoutProvenance"]
|
|
9
9
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Fake MakeMovieFrames and AssembleTestMovie
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import numpy as np
|
|
5
6
|
from astropy.io import fits
|
|
6
7
|
from dkist_processing_common.codecs.fits import fits_hdu_decoder
|
|
@@ -11,7 +12,6 @@ from dkist_processing_common.tasks import AssembleMovie
|
|
|
11
12
|
from dkist_processing_common.tasks import WorkflowTaskBase
|
|
12
13
|
from PIL import ImageDraw
|
|
13
14
|
|
|
14
|
-
|
|
15
15
|
__all__ = ["MakeTestMovieFrames", "AssembleTestMovie"]
|
|
16
16
|
|
|
17
17
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Tests for the tasks defined in this repo
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import json
|
|
5
6
|
from dataclasses import asdict
|
|
6
7
|
from dataclasses import dataclass
|
|
@@ -45,8 +46,8 @@ from dkist_processing_test.tasks.movie import AssembleTestMovie
|
|
|
45
46
|
from dkist_processing_test.tasks.movie import MakeTestMovieFrames
|
|
46
47
|
from dkist_processing_test.tasks.noop import NoOpTask
|
|
47
48
|
from dkist_processing_test.tasks.write_l1 import WriteL1Data
|
|
48
|
-
from dkist_processing_test.tests.conftest import generate_214_l0_fits_frame
|
|
49
49
|
from dkist_processing_test.tests.conftest import S122Headers
|
|
50
|
+
from dkist_processing_test.tests.conftest import generate_214_l0_fits_frame
|
|
50
51
|
|
|
51
52
|
|
|
52
53
|
@dataclass
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Workflow which exercises the common tasks in an end to end scenario
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from dkist_processing_common.tasks import CreateTrialAsdf
|
|
5
6
|
from dkist_processing_common.tasks import CreateTrialDatasetInventory
|
|
6
7
|
from dkist_processing_common.tasks import CreateTrialQualityReport
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Workflow which exercises the common tasks in an end to end scenario
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from dkist_processing_common.tasks import PublishCatalogAndQualityMessages
|
|
5
6
|
from dkist_processing_common.tasks import QualityL1Metrics
|
|
6
7
|
from dkist_processing_common.tasks import SubmitDatasetMetadata
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Workflow which exercises the api's but doesn't perform an action
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from dkist_processing_core import Workflow
|
|
5
6
|
|
|
6
7
|
from dkist_processing_test.tasks import NoOpTask
|
|
7
8
|
from dkist_processing_test.tasks import NoOpTask2
|
|
8
9
|
|
|
9
|
-
|
|
10
10
|
noop = Workflow(
|
|
11
11
|
input_data="input",
|
|
12
12
|
output_data="output",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Workflow which exercises the api's but doesn't perform an action
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from dkist_processing_core import ResourceQueue
|
|
5
6
|
from dkist_processing_core import Workflow
|
|
6
7
|
|
|
7
8
|
from dkist_processing_test.tasks import HighMemoryTask
|
|
8
9
|
|
|
9
|
-
|
|
10
10
|
high_memory_workflow = Workflow(
|
|
11
11
|
input_data="input",
|
|
12
12
|
output_data="output",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Workflow which exercises the common tasks end to end in a trial scenario
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from dkist_processing_common.tasks import CreateTrialAsdf
|
|
5
6
|
from dkist_processing_common.tasks import CreateTrialDatasetInventory
|
|
6
7
|
from dkist_processing_common.tasks import CreateTrialQualityReport
|
{dkist_processing_test-1.34.1rc3.dist-info → dkist_processing_test-1.34.3.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dkist-processing-test
|
|
3
|
-
Version: 1.34.
|
|
3
|
+
Version: 1.34.3
|
|
4
4
|
Summary: Example instrument code used by the DKIST science data processing pipelines to test processing infrastructure
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
13
|
Requires-Python: >=3.11
|
|
14
14
|
Description-Content-Type: text/x-rst
|
|
15
|
-
Requires-Dist: dkist-processing-common==11.
|
|
15
|
+
Requires-Dist: dkist-processing-common==11.3.0
|
|
16
16
|
Requires-Dist: dkist-header-validator==5.2.1
|
|
17
17
|
Requires-Dist: dkist-service-configuration==2.3.0
|
|
18
18
|
Requires-Dist: dkist-fits-specifications==4.17.0
|
|
@@ -31,12 +31,12 @@ Requires-Dist: dkist-processing-test[asdf]; extra == "test"
|
|
|
31
31
|
Requires-Dist: dkist-processing-test[quality]; extra == "test"
|
|
32
32
|
Provides-Extra: inventory
|
|
33
33
|
Requires-Dist: dkist-processing-common[inventory]; extra == "inventory"
|
|
34
|
-
Requires-Dist: dkist-inventory==1.
|
|
34
|
+
Requires-Dist: dkist-inventory==1.10.0; extra == "inventory"
|
|
35
35
|
Provides-Extra: asdf
|
|
36
36
|
Requires-Dist: dkist-processing-common[asdf]; extra == "asdf"
|
|
37
|
-
Requires-Dist: dkist-inventory[asdf]==1.
|
|
37
|
+
Requires-Dist: dkist-inventory[asdf]==1.10.0; extra == "asdf"
|
|
38
38
|
Provides-Extra: quality
|
|
39
|
-
Requires-Dist: dkist-quality==2.0.
|
|
39
|
+
Requires-Dist: dkist-quality==2.0.0; extra == "quality"
|
|
40
40
|
Provides-Extra: frozen
|
|
41
41
|
Requires-Dist: ConfigUpdater==3.2; extra == "frozen"
|
|
42
42
|
Requires-Dist: Deprecated==1.2.18; extra == "frozen"
|
|
@@ -58,14 +58,14 @@ Requires-Dist: PyYAML==6.0.2; extra == "frozen"
|
|
|
58
58
|
Requires-Dist: Pygments==2.19.2; extra == "frozen"
|
|
59
59
|
Requires-Dist: SQLAlchemy==1.4.54; extra == "frozen"
|
|
60
60
|
Requires-Dist: SQLAlchemy-JSONField==1.0.2; extra == "frozen"
|
|
61
|
-
Requires-Dist: SQLAlchemy-Utils==0.
|
|
61
|
+
Requires-Dist: SQLAlchemy-Utils==0.42.0; extra == "frozen"
|
|
62
62
|
Requires-Dist: WTForms==3.2.1; extra == "frozen"
|
|
63
63
|
Requires-Dist: Werkzeug==2.2.3; extra == "frozen"
|
|
64
64
|
Requires-Dist: aioftp==0.26.2; extra == "frozen"
|
|
65
65
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "frozen"
|
|
66
66
|
Requires-Dist: aiohttp==3.12.15; extra == "frozen"
|
|
67
67
|
Requires-Dist: aiosignal==1.4.0; extra == "frozen"
|
|
68
|
-
Requires-Dist: alembic==1.16.
|
|
68
|
+
Requires-Dist: alembic==1.16.5; extra == "frozen"
|
|
69
69
|
Requires-Dist: amqp==5.3.1; extra == "frozen"
|
|
70
70
|
Requires-Dist: annotated-types==0.7.0; extra == "frozen"
|
|
71
71
|
Requires-Dist: anyio==4.10.0; extra == "frozen"
|
|
@@ -84,19 +84,19 @@ Requires-Dist: apache-airflow-providers-sqlite==4.1.2; extra == "frozen"
|
|
|
84
84
|
Requires-Dist: apispec==6.8.2; extra == "frozen"
|
|
85
85
|
Requires-Dist: argcomplete==3.6.2; extra == "frozen"
|
|
86
86
|
Requires-Dist: asdf==3.5.0; extra == "frozen"
|
|
87
|
-
Requires-Dist: asdf_standard==1.
|
|
87
|
+
Requires-Dist: asdf_standard==1.4.0; extra == "frozen"
|
|
88
88
|
Requires-Dist: asdf_transform_schemas==0.6.0; extra == "frozen"
|
|
89
89
|
Requires-Dist: asgiref==3.9.1; extra == "frozen"
|
|
90
90
|
Requires-Dist: asteval==1.0.6; extra == "frozen"
|
|
91
91
|
Requires-Dist: astropy==7.0.2; extra == "frozen"
|
|
92
|
-
Requires-Dist: astropy-iers-data==0.2025.
|
|
92
|
+
Requires-Dist: astropy-iers-data==0.2025.9.1.0.42.11; extra == "frozen"
|
|
93
93
|
Requires-Dist: asyncpg==0.30.0; extra == "frozen"
|
|
94
94
|
Requires-Dist: attrs==25.3.0; extra == "frozen"
|
|
95
95
|
Requires-Dist: babel==2.17.0; extra == "frozen"
|
|
96
96
|
Requires-Dist: billiard==4.2.1; extra == "frozen"
|
|
97
97
|
Requires-Dist: blinker==1.9.0; extra == "frozen"
|
|
98
|
-
Requires-Dist: boto3==1.40.
|
|
99
|
-
Requires-Dist: botocore==1.40.
|
|
98
|
+
Requires-Dist: boto3==1.40.22; extra == "frozen"
|
|
99
|
+
Requires-Dist: botocore==1.40.22; extra == "frozen"
|
|
100
100
|
Requires-Dist: cachelib==0.13.0; extra == "frozen"
|
|
101
101
|
Requires-Dist: celery==5.5.3; extra == "frozen"
|
|
102
102
|
Requires-Dist: certifi==2025.8.3; extra == "frozen"
|
|
@@ -111,30 +111,30 @@ Requires-Dist: colorama==0.4.6; extra == "frozen"
|
|
|
111
111
|
Requires-Dist: colorlog==6.9.0; extra == "frozen"
|
|
112
112
|
Requires-Dist: connexion==2.14.2; extra == "frozen"
|
|
113
113
|
Requires-Dist: contourpy==1.3.3; extra == "frozen"
|
|
114
|
-
Requires-Dist:
|
|
114
|
+
Requires-Dist: cron_descriptor==2.0.6; extra == "frozen"
|
|
115
115
|
Requires-Dist: croniter==6.0.0; extra == "frozen"
|
|
116
|
-
Requires-Dist: cryptography==45.0.
|
|
116
|
+
Requires-Dist: cryptography==45.0.7; extra == "frozen"
|
|
117
117
|
Requires-Dist: cycler==0.12.1; extra == "frozen"
|
|
118
118
|
Requires-Dist: dacite==1.9.2; extra == "frozen"
|
|
119
119
|
Requires-Dist: decorator==5.2.1; extra == "frozen"
|
|
120
120
|
Requires-Dist: dill==0.4.0; extra == "frozen"
|
|
121
121
|
Requires-Dist: dkist-header-validator==5.2.1; extra == "frozen"
|
|
122
|
-
Requires-Dist: dkist-processing-common==11.
|
|
122
|
+
Requires-Dist: dkist-processing-common==11.3.0; extra == "frozen"
|
|
123
123
|
Requires-Dist: dkist-processing-core==5.1.1; extra == "frozen"
|
|
124
124
|
Requires-Dist: dkist-processing-pac==3.1.1; extra == "frozen"
|
|
125
|
-
Requires-Dist: dkist-processing-test==1.34.
|
|
125
|
+
Requires-Dist: dkist-processing-test==1.34.3; extra == "frozen"
|
|
126
126
|
Requires-Dist: dkist-service-configuration==2.3.0; extra == "frozen"
|
|
127
127
|
Requires-Dist: dkist-spectral-lines==3.0.0; extra == "frozen"
|
|
128
128
|
Requires-Dist: dkist_fits_specifications==4.17.0; extra == "frozen"
|
|
129
129
|
Requires-Dist: dnspython==2.7.0; extra == "frozen"
|
|
130
130
|
Requires-Dist: ecs-logging==2.2.0; extra == "frozen"
|
|
131
131
|
Requires-Dist: elastic-apm==6.24.0; extra == "frozen"
|
|
132
|
-
Requires-Dist:
|
|
133
|
-
Requires-Dist: fastjsonschema==2.21.
|
|
132
|
+
Requires-Dist: email-validator==2.3.0; extra == "frozen"
|
|
133
|
+
Requires-Dist: fastjsonschema==2.21.2; extra == "frozen"
|
|
134
134
|
Requires-Dist: flower==2.0.1; extra == "frozen"
|
|
135
|
-
Requires-Dist: fonttools==4.59.
|
|
135
|
+
Requires-Dist: fonttools==4.59.2; extra == "frozen"
|
|
136
136
|
Requires-Dist: frozenlist==1.7.0; extra == "frozen"
|
|
137
|
-
Requires-Dist: fsspec==2025.
|
|
137
|
+
Requires-Dist: fsspec==2025.9.0; extra == "frozen"
|
|
138
138
|
Requires-Dist: globus-sdk==3.62.0; extra == "frozen"
|
|
139
139
|
Requires-Dist: google-re2==1.1.20250805; extra == "frozen"
|
|
140
140
|
Requires-Dist: googleapis-common-protos==1.70.0; extra == "frozen"
|
|
@@ -145,7 +145,7 @@ Requires-Dist: gunicorn==23.0.0; extra == "frozen"
|
|
|
145
145
|
Requires-Dist: h11==0.16.0; extra == "frozen"
|
|
146
146
|
Requires-Dist: httpcore==1.0.9; extra == "frozen"
|
|
147
147
|
Requires-Dist: httpx==0.28.1; extra == "frozen"
|
|
148
|
-
Requires-Dist: humanize==4.
|
|
148
|
+
Requires-Dist: humanize==4.13.0; extra == "frozen"
|
|
149
149
|
Requires-Dist: idna==3.10; extra == "frozen"
|
|
150
150
|
Requires-Dist: imageio==2.37.0; extra == "frozen"
|
|
151
151
|
Requires-Dist: imageio-ffmpeg==0.6.0; extra == "frozen"
|
|
@@ -153,12 +153,12 @@ Requires-Dist: importlib_metadata==8.7.0; extra == "frozen"
|
|
|
153
153
|
Requires-Dist: inflection==0.5.1; extra == "frozen"
|
|
154
154
|
Requires-Dist: itsdangerous==2.2.0; extra == "frozen"
|
|
155
155
|
Requires-Dist: jmespath==1.0.1; extra == "frozen"
|
|
156
|
-
Requires-Dist: jsonschema==4.25.
|
|
156
|
+
Requires-Dist: jsonschema==4.25.1; extra == "frozen"
|
|
157
157
|
Requires-Dist: jsonschema-specifications==2025.4.1; extra == "frozen"
|
|
158
158
|
Requires-Dist: jupyter_core==5.8.1; extra == "frozen"
|
|
159
159
|
Requires-Dist: kiwisolver==1.4.9; extra == "frozen"
|
|
160
160
|
Requires-Dist: kombu==5.5.4; extra == "frozen"
|
|
161
|
-
Requires-Dist: lazy-object-proxy==1.
|
|
161
|
+
Requires-Dist: lazy-object-proxy==1.12.0; extra == "frozen"
|
|
162
162
|
Requires-Dist: limits==5.5.0; extra == "frozen"
|
|
163
163
|
Requires-Dist: linkify-it-py==2.0.3; extra == "frozen"
|
|
164
164
|
Requires-Dist: llvmlite==0.44.0; extra == "frozen"
|
|
@@ -169,11 +169,11 @@ Requires-Dist: markdown-it-py==4.0.0; extra == "frozen"
|
|
|
169
169
|
Requires-Dist: marshmallow==3.26.1; extra == "frozen"
|
|
170
170
|
Requires-Dist: marshmallow-oneofschema==3.2.0; extra == "frozen"
|
|
171
171
|
Requires-Dist: marshmallow-sqlalchemy==0.28.2; extra == "frozen"
|
|
172
|
-
Requires-Dist: matplotlib==3.10.
|
|
172
|
+
Requires-Dist: matplotlib==3.10.6; extra == "frozen"
|
|
173
173
|
Requires-Dist: mdit-py-plugins==0.5.0; extra == "frozen"
|
|
174
174
|
Requires-Dist: mdurl==0.1.2; extra == "frozen"
|
|
175
175
|
Requires-Dist: methodtools==0.4.7; extra == "frozen"
|
|
176
|
-
Requires-Dist: more-itertools==10.
|
|
176
|
+
Requires-Dist: more-itertools==10.8.0; extra == "frozen"
|
|
177
177
|
Requires-Dist: moviepy==2.2.1; extra == "frozen"
|
|
178
178
|
Requires-Dist: multidict==6.6.4; extra == "frozen"
|
|
179
179
|
Requires-Dist: nbformat==5.10.4; extra == "frozen"
|
|
@@ -190,22 +190,22 @@ Requires-Dist: opentelemetry-sdk==1.36.0; extra == "frozen"
|
|
|
190
190
|
Requires-Dist: opentelemetry-semantic-conventions==0.57b0; extra == "frozen"
|
|
191
191
|
Requires-Dist: ordered-set==4.1.0; extra == "frozen"
|
|
192
192
|
Requires-Dist: packaging==25.0; extra == "frozen"
|
|
193
|
-
Requires-Dist: pandas==2.3.
|
|
193
|
+
Requires-Dist: pandas==2.3.2; extra == "frozen"
|
|
194
194
|
Requires-Dist: parfive==2.2.0; extra == "frozen"
|
|
195
195
|
Requires-Dist: pathspec==0.12.1; extra == "frozen"
|
|
196
196
|
Requires-Dist: pendulum==3.1.0; extra == "frozen"
|
|
197
197
|
Requires-Dist: pika==1.3.2; extra == "frozen"
|
|
198
198
|
Requires-Dist: pillow==11.3.0; extra == "frozen"
|
|
199
199
|
Requires-Dist: pip==25.2; extra == "frozen"
|
|
200
|
-
Requires-Dist: platformdirs==4.
|
|
200
|
+
Requires-Dist: platformdirs==4.4.0; extra == "frozen"
|
|
201
201
|
Requires-Dist: pluggy==1.6.0; extra == "frozen"
|
|
202
202
|
Requires-Dist: pooch==1.8.2; extra == "frozen"
|
|
203
203
|
Requires-Dist: prison==0.2.1; extra == "frozen"
|
|
204
204
|
Requires-Dist: proglog==0.1.12; extra == "frozen"
|
|
205
205
|
Requires-Dist: prometheus_client==0.22.1; extra == "frozen"
|
|
206
|
-
Requires-Dist: prompt_toolkit==3.0.
|
|
206
|
+
Requires-Dist: prompt_toolkit==3.0.52; extra == "frozen"
|
|
207
207
|
Requires-Dist: propcache==0.3.2; extra == "frozen"
|
|
208
|
-
Requires-Dist: protobuf==6.
|
|
208
|
+
Requires-Dist: protobuf==6.32.0; extra == "frozen"
|
|
209
209
|
Requires-Dist: psutil==7.0.0; extra == "frozen"
|
|
210
210
|
Requires-Dist: psycopg2-binary==2.9.10; extra == "frozen"
|
|
211
211
|
Requires-Dist: py==1.11.0; extra == "frozen"
|
|
@@ -223,13 +223,13 @@ Requires-Dist: python-slugify==8.0.4; extra == "frozen"
|
|
|
223
223
|
Requires-Dist: pytz==2025.2; extra == "frozen"
|
|
224
224
|
Requires-Dist: redis==4.6.0; extra == "frozen"
|
|
225
225
|
Requires-Dist: referencing==0.36.2; extra == "frozen"
|
|
226
|
-
Requires-Dist: requests==2.32.
|
|
226
|
+
Requires-Dist: requests==2.32.5; extra == "frozen"
|
|
227
227
|
Requires-Dist: requests-toolbelt==1.0.0; extra == "frozen"
|
|
228
228
|
Requires-Dist: retry==0.9.2; extra == "frozen"
|
|
229
229
|
Requires-Dist: rfc3339-validator==0.1.4; extra == "frozen"
|
|
230
230
|
Requires-Dist: rich==13.9.4; extra == "frozen"
|
|
231
231
|
Requires-Dist: rich-argparse==1.7.1; extra == "frozen"
|
|
232
|
-
Requires-Dist: rpds-py==0.27.
|
|
232
|
+
Requires-Dist: rpds-py==0.27.1; extra == "frozen"
|
|
233
233
|
Requires-Dist: s3transfer==0.13.1; extra == "frozen"
|
|
234
234
|
Requires-Dist: scipy==1.16.1; extra == "frozen"
|
|
235
235
|
Requires-Dist: semantic-version==2.10.0; extra == "frozen"
|
|
@@ -250,7 +250,7 @@ Requires-Dist: tornado==6.5.2; extra == "frozen"
|
|
|
250
250
|
Requires-Dist: tqdm==4.67.1; extra == "frozen"
|
|
251
251
|
Requires-Dist: traitlets==5.14.3; extra == "frozen"
|
|
252
252
|
Requires-Dist: typing-inspection==0.4.1; extra == "frozen"
|
|
253
|
-
Requires-Dist: typing_extensions==4.
|
|
253
|
+
Requires-Dist: typing_extensions==4.15.0; extra == "frozen"
|
|
254
254
|
Requires-Dist: tzdata==2025.2; extra == "frozen"
|
|
255
255
|
Requires-Dist: uc-micro-py==1.0.3; extra == "frozen"
|
|
256
256
|
Requires-Dist: uncertainties==3.2.3; extra == "frozen"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
dkist_processing_test/__init__.py,sha256=_-5M5pAIsIFMCqGAgwfXhLggfjwdOOmDxoA7zwUpbKk,339
|
|
2
|
+
dkist_processing_test/config.py,sha256=VqgidPYV4oXsC37Pu-14paK2a-RRotMCuxRy-RGDGxY,384
|
|
3
|
+
dkist_processing_test/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
dkist_processing_test/models/constants.py,sha256=TxHYZHl3YQXN7-Voj7QgjgAajbxxB_qR8tRI9iTdERI,726
|
|
5
|
+
dkist_processing_test/models/parameters.py,sha256=2iUGkp0AWfvyAvG6iaug5gINlqRG9RiZZ1ElkrIm6q4,2213
|
|
6
|
+
dkist_processing_test/tasks/__init__.py,sha256=mzbjxWY9fdNKUyfXDC_vXuSaB7G0-iwrumCUlq6keoA,457
|
|
7
|
+
dkist_processing_test/tasks/exercise_numba.py,sha256=Sml9M5-B8VH6QUVuOyovSDu2-nenUntyvMMbXlI4jO4,1438
|
|
8
|
+
dkist_processing_test/tasks/fail.py,sha256=SVsKR-OCeeFYuDf8ktW-hx4fwcQEIYCBCM68kw3uCRM,246
|
|
9
|
+
dkist_processing_test/tasks/fake_science.py,sha256=JrwVlJsUlEP1SLKim_9eoKR0SZd1PtFcauTkPrSvamg,4448
|
|
10
|
+
dkist_processing_test/tasks/high_memory.py,sha256=FOWseexCge7VLAh9B6WKEl1js6txtpU1BI3JxU35ClU,541
|
|
11
|
+
dkist_processing_test/tasks/manual.py,sha256=BZEfwjVqLWcho_C-KVCkR9FDzDXq2R5pynHXfL5VW34,583
|
|
12
|
+
dkist_processing_test/tasks/movie.py,sha256=Cd3vquoVkh0uBn_r170JszTsAVh89WZACi3HRKZn2kU,1831
|
|
13
|
+
dkist_processing_test/tasks/noop.py,sha256=xz-T_uCIvvA70t8gMSk8WYJBDpmyBfFF8KUigrEKXM4,236
|
|
14
|
+
dkist_processing_test/tasks/parse.py,sha256=wW47L0cY5cX0B4C6srSAwxuDz28uTM_IcxjoBFxBauY,2313
|
|
15
|
+
dkist_processing_test/tasks/quality.py,sha256=LHvcSjAgwDQx3nlcG1v-5WlMA9aCY1pANxyxQraJyJI,896
|
|
16
|
+
dkist_processing_test/tasks/write_l1.py,sha256=lpNyCI3kH_pnL0Wi1LHhNRjRHNxu6q76xccCNHm7uwA,2074
|
|
17
|
+
dkist_processing_test/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
dkist_processing_test/tests/conftest.py,sha256=JWf49HUSuw_JxrYuyIWYifsEefQj1FTlx1N8gCv5xMo,2729
|
|
19
|
+
dkist_processing_test/tests/test_tasks.py,sha256=zHa---DaNA69g7kvlY9pxD8qUcvbVTv6d2pfz2qVKnI,34388
|
|
20
|
+
dkist_processing_test/tests/test_workflows.py,sha256=LIbb-XKvq8Zick4To-EvP8TbsZ12L8rkd24dtLVZlAc,287
|
|
21
|
+
dkist_processing_test/workflows/__init__.py,sha256=Ryn_HXsVkZM_lLKyVteXC909Td2geylmz_1Z-8SE8c8,78
|
|
22
|
+
dkist_processing_test/workflows/common_tasks.py,sha256=D7nvoI8n2X344cbof9LL1BXGhFVXmakPr8KcDJxdDwg,6838
|
|
23
|
+
dkist_processing_test/workflows/end_to_end.py,sha256=OrRHjM3HlXAiaaExs6ciQ9bOiqyVeLa4AP4_GpRWzHs,2354
|
|
24
|
+
dkist_processing_test/workflows/exercise_numba.py,sha256=phpPYcIXEsmc0X1yls_YbXoKS6VXxhHe_8vNd_GyajU,347
|
|
25
|
+
dkist_processing_test/workflows/fail.py,sha256=rWNnqYb5Nl98GTbpECJvf4z2TBcU0UTZ5Uatj0oRrYE,326
|
|
26
|
+
dkist_processing_test/workflows/noop.py,sha256=vXR0fVRyEAiFQMukjYoVwPYUJxcRJaMh_rUGJqJDDL0,666
|
|
27
|
+
dkist_processing_test/workflows/resource_queue.py,sha256=IcNuaN1O0-SLf1KMsnH6RFcXr_6r2Jc8ddr9o-lXs9c,500
|
|
28
|
+
dkist_processing_test/workflows/trial_end_to_end.py,sha256=pm_yz8tmp8rfvN0-84VZW_LeOFEUVjfFE5pGMZLCLW8,2416
|
|
29
|
+
dkist_processing_test-1.34.3.dist-info/METADATA,sha256=RS347Yk8uqrXZgwl5Z4ByyXPxIqZsOMIgVB7l0iuL_w,16618
|
|
30
|
+
dkist_processing_test-1.34.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
+
dkist_processing_test-1.34.3.dist-info/top_level.txt,sha256=Hs4oTIrG_r-svhk_RGFTEO4e3vqQoYlBzdv5mvJVF24,22
|
|
32
|
+
dkist_processing_test-1.34.3.dist-info/RECORD,,
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
dkist_processing_test/__init__.py,sha256=t-Daj1wOIg5dgI1gklg6suSnI-xi6DKSb6DxHDWH96c,340
|
|
2
|
-
dkist_processing_test/config.py,sha256=LF80ReTk0ggJ3eZI4NZRZCgmR6E84adWU5iP6-JN-XY,383
|
|
3
|
-
dkist_processing_test/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
dkist_processing_test/models/constants.py,sha256=TxHYZHl3YQXN7-Voj7QgjgAajbxxB_qR8tRI9iTdERI,726
|
|
5
|
-
dkist_processing_test/models/parameters.py,sha256=2iUGkp0AWfvyAvG6iaug5gINlqRG9RiZZ1ElkrIm6q4,2213
|
|
6
|
-
dkist_processing_test/tasks/__init__.py,sha256=mzbjxWY9fdNKUyfXDC_vXuSaB7G0-iwrumCUlq6keoA,457
|
|
7
|
-
dkist_processing_test/tasks/exercise_numba.py,sha256=XfMVffPUgeiPoxSgo39tIjzFBJKKt3fnIYGaDFyBibc,1437
|
|
8
|
-
dkist_processing_test/tasks/fail.py,sha256=jiOiuqoX_JR5hx81REgvcSvb0GBlVKc9MIXKUO0Nhr4,245
|
|
9
|
-
dkist_processing_test/tasks/fake_science.py,sha256=rz4SK5F0xatMtUJJqwCFfZJE80LoEQwSSazNSuSBl4M,4447
|
|
10
|
-
dkist_processing_test/tasks/high_memory.py,sha256=J3vBsivFkqs8eZZwBPpEORlHnFX1bGsbO3CjllJMRsc,540
|
|
11
|
-
dkist_processing_test/tasks/manual.py,sha256=gjol_EieMbclv0ZDkVqR2Xd7abutali6KNwoqaCJiAI,583
|
|
12
|
-
dkist_processing_test/tasks/movie.py,sha256=uFPWQlRFP5zzzYGT58IXebbG49su2I4AEpN2bIy7vGc,1831
|
|
13
|
-
dkist_processing_test/tasks/noop.py,sha256=txgpa0DYrjYPKBDfwfjHt7X9Dna4yaJeMCabu3p2Zmo,235
|
|
14
|
-
dkist_processing_test/tasks/parse.py,sha256=7BDDsAqqBhFKlIY1vv19JaM-Ab_37msOQzWVhq5Nbgo,2312
|
|
15
|
-
dkist_processing_test/tasks/quality.py,sha256=9QynI9R5mkYueb46wNBUhK62QSd2n791L0_w6nVxBjc,895
|
|
16
|
-
dkist_processing_test/tasks/write_l1.py,sha256=lpNyCI3kH_pnL0Wi1LHhNRjRHNxu6q76xccCNHm7uwA,2074
|
|
17
|
-
dkist_processing_test/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
dkist_processing_test/tests/conftest.py,sha256=9H8_tqNKofHnl1IRqYM2-M2_K_TJ3b6oaIfb1dVkbsg,2728
|
|
19
|
-
dkist_processing_test/tests/test_tasks.py,sha256=UuH3jWA3jpUjjIlcNX26DwwTAioC9KpxHfBWWPhl_80,34387
|
|
20
|
-
dkist_processing_test/tests/test_workflows.py,sha256=NqRkstqcqwH80cKJ1uDw16G4MsDOuOiZRWdfH0STarQ,286
|
|
21
|
-
dkist_processing_test/workflows/__init__.py,sha256=Ryn_HXsVkZM_lLKyVteXC909Td2geylmz_1Z-8SE8c8,78
|
|
22
|
-
dkist_processing_test/workflows/common_tasks.py,sha256=UpUTt-QhD-jkzBB3p1ECRbtqY3wjP6Lfsy4TdvxZKQ8,6837
|
|
23
|
-
dkist_processing_test/workflows/end_to_end.py,sha256=rPiK2I8Z4E9NSd9gnrUCGJebWN4wuesm3e_QJE-SsxA,2353
|
|
24
|
-
dkist_processing_test/workflows/exercise_numba.py,sha256=phpPYcIXEsmc0X1yls_YbXoKS6VXxhHe_8vNd_GyajU,347
|
|
25
|
-
dkist_processing_test/workflows/fail.py,sha256=KGhyAF7gKYYutP4aGa-1tDqPsC7Nr4xKYY0z-HByWi0,326
|
|
26
|
-
dkist_processing_test/workflows/noop.py,sha256=k2-6BpRkl1JDGaHPavxDzIlVx11KQtxKmsHmHTNQ9o0,666
|
|
27
|
-
dkist_processing_test/workflows/resource_queue.py,sha256=_jOT99O0MFN_ACne6i8T5ZIwe_lBQqGz2Ccb8JlqQMI,500
|
|
28
|
-
dkist_processing_test/workflows/trial_end_to_end.py,sha256=4QSphBegbetDben5PdA5_J64hWJVV8ciVdF90qkyZCo,2415
|
|
29
|
-
dkist_processing_test-1.34.1rc3.dist-info/METADATA,sha256=jjp5f8QBAcz5Dk0LlmHsIiJpL4VDCuZdgES3-58xwoI,16629
|
|
30
|
-
dkist_processing_test-1.34.1rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
-
dkist_processing_test-1.34.1rc3.dist-info/top_level.txt,sha256=Hs4oTIrG_r-svhk_RGFTEO4e3vqQoYlBzdv5mvJVF24,22
|
|
32
|
-
dkist_processing_test-1.34.1rc3.dist-info/RECORD,,
|
|
File without changes
|
{dkist_processing_test-1.34.1rc3.dist-info → dkist_processing_test-1.34.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|