dkist-processing-ops 1.0.0rc4__tar.gz → 1.1.0__tar.gz
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-ops might be problematic. Click here for more details.
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/PKG-INFO +3 -3
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/_version.py +2 -2
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/dags/scale.py +2 -3
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/PKG-INFO +3 -3
- dkist_processing_ops-1.1.0/dkist_processing_ops.egg-info/requires.txt +7 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/pyproject.toml +2 -2
- dkist-processing-ops-1.0.0rc4/dkist_processing_ops.egg-info/requires.txt +0 -7
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/.gitignore +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/.pre-commit-config.yaml +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/LICENSE.rst +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/MANIFEST.in +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/README.rst +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/bitbucket-pipelines.yml +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/__init__.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tasks/__init__.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tasks/wait.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tests/__init__.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tests/test_workflows.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/workflows/__init__.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/workflows/smoke.py +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/SOURCES.txt +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/dependency_links.txt +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/not-zip-safe +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/top_level.txt +0 -0
- {dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dkist-processing-ops
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Automated Processing smoke test and operations workflows
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD 3-Clause
|
|
@@ -11,8 +11,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE.rst
|
|
14
|
-
Requires-Dist: dkist-processing-common==
|
|
15
|
-
Requires-Dist: dkist-service-configuration==
|
|
14
|
+
Requires-Dist: dkist-processing-common==8.1.0
|
|
15
|
+
Requires-Dist: dkist-service-configuration==2.2.0
|
|
16
16
|
Provides-Extra: test
|
|
17
17
|
Requires-Dist: pytest; extra == "test"
|
|
18
18
|
Requires-Dist: pytest-cov; extra == "test"
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/dags/scale.py
RENAMED
|
@@ -11,12 +11,13 @@ def export_scale_dags(path: Path | str) -> list[Path]:
|
|
|
11
11
|
"""Export all the ops dags"""
|
|
12
12
|
result = []
|
|
13
13
|
dag_prefix = "ops_scale"
|
|
14
|
+
version = environ.get("BUILD_VERSION", "dev")
|
|
14
15
|
scales = [16, 32]
|
|
15
16
|
queues = ["default", "high_memory"]
|
|
16
17
|
sleep_duration_seconds = 60
|
|
17
18
|
for queue in queues:
|
|
18
19
|
for scale in scales:
|
|
19
|
-
dag_name = f"{dag_prefix}_{queue}_{scale}"
|
|
20
|
+
dag_name = f"{dag_prefix}_{queue}_{scale}_{version}"
|
|
20
21
|
dag_body = _scale_dag(
|
|
21
22
|
dag_name=dag_name,
|
|
22
23
|
sleep_duration_seconds=sleep_duration_seconds,
|
|
@@ -33,8 +34,6 @@ def _export_ops_dag(dag_name: str, dag_body: str, path: Path | str | None = None
|
|
|
33
34
|
path = path or "dags/"
|
|
34
35
|
path = Path(path)
|
|
35
36
|
path.mkdir(exist_ok=True)
|
|
36
|
-
version = environ.get("BUILD_VERSION", "dev")
|
|
37
|
-
dag_name = f"{dag_name}_{version}"
|
|
38
37
|
workflow_py = path / f"{dag_name}.py"
|
|
39
38
|
with workflow_py.open(mode="w") as f:
|
|
40
39
|
f.write(dag_body)
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dkist-processing-ops
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Automated Processing smoke test and operations workflows
|
|
5
5
|
Author-email: NSO / AURA <dkistdc@nso.edu>
|
|
6
6
|
License: BSD 3-Clause
|
|
@@ -11,8 +11,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE.rst
|
|
14
|
-
Requires-Dist: dkist-processing-common==
|
|
15
|
-
Requires-Dist: dkist-service-configuration==
|
|
14
|
+
Requires-Dist: dkist-processing-common==8.1.0
|
|
15
|
+
Requires-Dist: dkist-service-configuration==2.2.0
|
|
16
16
|
Provides-Extra: test
|
|
17
17
|
Requires-Dist: pytest; extra == "test"
|
|
18
18
|
Requires-Dist: pytest-cov; extra == "test"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/__init__.py
RENAMED
|
File without changes
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tasks/__init__.py
RENAMED
|
File without changes
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tasks/wait.py
RENAMED
|
File without changes
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/tests/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dkist-processing-ops-1.0.0rc4 → dkist_processing_ops-1.1.0}/dkist_processing_ops/workflows/smoke.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|