argus-alm 0.14.0__tar.gz → 0.14.1__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.
- {argus_alm-0.14.0 → argus_alm-0.14.1}/PKG-INFO +4 -2
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/driver_matrix_tests/client.py +1 -1
- {argus_alm-0.14.0 → argus_alm-0.14.1}/pyproject.toml +3 -3
- {argus_alm-0.14.0 → argus_alm-0.14.1}/LICENSE +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/README.md +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/base.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/driver_matrix_tests/cli.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/generic/cli.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/generic/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/generic_result.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/sct/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/sct/types.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/client/sirenada/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/common/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/common/enums.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/common/sct_types.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.1}/argus/common/sirenada_types.py +0 -0
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: argus-alm
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.1
|
|
4
4
|
Summary: Argus
|
|
5
5
|
Home-page: https://github.com/scylladb/argus
|
|
6
6
|
License: Apache-2.0
|
|
7
7
|
Author: Alexey Kartashov
|
|
8
8
|
Author-email: alexey.kartashov@scylladb.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
10
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
15
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
14
16
|
Requires-Dist: requests (>=2.26.0,<3.0.0)
|
|
@@ -13,7 +13,7 @@ class ArgusDriverMatrixClient(ArgusClient):
|
|
|
13
13
|
SUBMIT_ENV = "/driver_matrix/env/submit"
|
|
14
14
|
|
|
15
15
|
def __init__(self, run_id: UUID, auth_token: str, base_url: str, api_version="v1", extra_headers: dict | None = None) -> None:
|
|
16
|
-
super().__init__(auth_token, base_url, api_version,
|
|
16
|
+
super().__init__(auth_token, base_url, api_version, extra_headers=extra_headers)
|
|
17
17
|
self.run_id = run_id
|
|
18
18
|
|
|
19
19
|
def submit_driver_matrix_run(self, job_name: str, job_url: str) -> None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "argus-alm"
|
|
3
|
-
version = "0.14.
|
|
3
|
+
version = "0.14.1"
|
|
4
4
|
description = "Argus"
|
|
5
5
|
authors = ["Alexey Kartashov <alexey.kartashov@scylladb.com>", "Łukasz Sójka <lukasz.sojka@scylladb.com>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -21,7 +21,7 @@ optional = true
|
|
|
21
21
|
|
|
22
22
|
[tool.poetry.dependencies]
|
|
23
23
|
requests = "^2.26.0"
|
|
24
|
-
python = "^3.
|
|
24
|
+
python = "^3.10"
|
|
25
25
|
click = "^8.1.3"
|
|
26
26
|
|
|
27
27
|
[tool.poetry.scripts]
|
|
@@ -58,4 +58,4 @@ build-backend = "poetry.core.masonry.api"
|
|
|
58
58
|
|
|
59
59
|
[tool.black]
|
|
60
60
|
line-length = 110
|
|
61
|
-
target-version = ["
|
|
61
|
+
target-version = ["py310"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|