checkmk-dev-tools 2.1.2__tar.gz → 2.1.3__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.
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/PKG-INFO +2 -2
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/jenkins_utils/__init__.py +4 -3
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/version.py +1 -1
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/pyproject.toml +2 -2
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/README.md +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/__init__.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/activity_from_fs.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/binreplace.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/check_rpath.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/ci_artifacts.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/cli.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/cpumon.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/decent_output.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/job_resource_usage.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/last_access.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/lockable_resources.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/procmon.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/pycinfo.py +0 -0
- {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.3}/cmk_dev/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: checkmk-dev-tools
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: Checkmk DevOps tools
|
|
5
5
|
Author: Frans Fürst
|
|
6
6
|
Author-email: frans.fuerst@checkmk.com
|
|
@@ -14,7 +14,7 @@ Requires-Dist: pydantic (>=2,<3)
|
|
|
14
14
|
Requires-Dist: python-jenkins (>=1.8.3,<1.9.0)
|
|
15
15
|
Requires-Dist: rich
|
|
16
16
|
Requires-Dist: trickkiste (>=0.3.4,<0.4.0)
|
|
17
|
-
Project-URL: Changelog, https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.
|
|
17
|
+
Project-URL: Changelog, https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.3/changelog.md
|
|
18
18
|
Project-URL: Repository, https://github.com/Checkmk/checkmk-dev-tools
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
|
|
@@ -695,9 +695,10 @@ def _set_jenkins_client_user_agent() -> Generator[None, None, None]:
|
|
|
695
695
|
# Preserve an maybe externall set user agent setting
|
|
696
696
|
given_user_agent = os.environ.get(env_var_name)
|
|
697
697
|
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
698
|
+
if not given_user_agent:
|
|
699
|
+
os.environ[env_var_name] = (
|
|
700
|
+
f"User-Agent: ci-artifacts {__version__} (python-requests {requests.__version__})"
|
|
701
|
+
)
|
|
701
702
|
try:
|
|
702
703
|
yield
|
|
703
704
|
finally:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "checkmk-dev-tools"
|
|
3
|
-
version = "2.1.
|
|
3
|
+
version = "2.1.3" # will-be-updated-automatically
|
|
4
4
|
description = "Checkmk DevOps tools"
|
|
5
5
|
authors = [
|
|
6
6
|
"Frans Fürst <frans.fuerst@checkmk.com>",
|
|
@@ -14,7 +14,7 @@ exclude = ["cmk_dev/out"]
|
|
|
14
14
|
|
|
15
15
|
[tool.poetry.urls]
|
|
16
16
|
Repository = "https://github.com/Checkmk/checkmk-dev-tools"
|
|
17
|
-
Changelog = "https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.
|
|
17
|
+
Changelog = "https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.3/changelog.md"
|
|
18
18
|
|
|
19
19
|
[tool.poetry.scripts]
|
|
20
20
|
activity-from-fs = 'cmk_dev.activity_from_fs:main'
|
|
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
|