wexample-runner 9.0.2__tar.gz → 9.0.4__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.
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/PKG-INFO +4 -4
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/README.md +2 -2
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/pyproject.toml +2 -2
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/__init__.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/py.typed +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/__init__.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/abstract_runner.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/docker_runner.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/local_runner.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/ssh_runner.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner_config.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner_registry.py +0 -0
- {wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner_result.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-runner
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.4
|
|
4
4
|
Summary: Generic runner abstraction for executing commands in different environments (local, Docker, SSH).
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -10,7 +10,7 @@ Classifier: Operating System :: OS Independent
|
|
|
10
10
|
Project-URL: homepage, https://github.com/wexample/python-runner
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Requires-Dist: paramiko>=3.0.0
|
|
13
|
-
Requires-Dist: wexample-helpers>=
|
|
13
|
+
Requires-Dist: wexample-helpers>=14.2.0
|
|
14
14
|
Provides-Extra: dev
|
|
15
15
|
Requires-Dist: pytest; extra == "dev"
|
|
16
16
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -18,7 +18,7 @@ Description-Content-Type: text/markdown
|
|
|
18
18
|
|
|
19
19
|
# runner
|
|
20
20
|
|
|
21
|
-
Version: 9.0.
|
|
21
|
+
Version: 9.0.4
|
|
22
22
|
|
|
23
23
|
Generic runner abstraction for executing commands in different environments (local, Docker, SSH).
|
|
24
24
|
|
|
@@ -99,7 +99,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
99
99
|
## Dependencies
|
|
100
100
|
|
|
101
101
|
- paramiko: >=3.0.0
|
|
102
|
-
- wexample-helpers: >=
|
|
102
|
+
- wexample-helpers: >=14.2.0
|
|
103
103
|
|
|
104
104
|
## Versioning & Compatibility Policy
|
|
105
105
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# runner
|
|
2
2
|
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.4
|
|
4
4
|
|
|
5
5
|
Generic runner abstraction for executing commands in different environments (local, Docker, SSH).
|
|
6
6
|
|
|
@@ -81,7 +81,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
81
81
|
## Dependencies
|
|
82
82
|
|
|
83
83
|
- paramiko: >=3.0.0
|
|
84
|
-
- wexample-helpers: >=
|
|
84
|
+
- wexample-helpers: >=14.2.0
|
|
85
85
|
|
|
86
86
|
## Versioning & Compatibility Policy
|
|
87
87
|
|
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-runner"
|
|
9
|
-
version = "9.0.
|
|
9
|
+
version = "9.0.4"
|
|
10
10
|
description = "Generic runner abstraction for executing commands in different environments (local, Docker, SSH)."
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -19,7 +19,7 @@ classifiers = [
|
|
|
19
19
|
]
|
|
20
20
|
dependencies = [
|
|
21
21
|
"paramiko>=3.0.0",
|
|
22
|
-
"wexample-helpers>=
|
|
22
|
+
"wexample-helpers>=14.2.0",
|
|
23
23
|
]
|
|
24
24
|
|
|
25
25
|
[project.readme]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_runner-9.0.2 → wexample_runner-9.0.4}/src/wexample_runner/runner/abstract_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|