robotcode-plugin 2.3.0__tar.gz → 2.4.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.
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/PKG-INFO +2 -2
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/pyproject.toml +1 -1
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/__init__.py +5 -2
- robotcode_plugin-2.4.0/src/robotcode/plugin/__version__.py +1 -0
- robotcode_plugin-2.3.0/src/robotcode/plugin/__version__.py +0 -1
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/.gitignore +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/README.md +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/aliases.py +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/options.py +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/types.py +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/manager.py +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/py.typed +0 -0
- {robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/specs.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode-plugin
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.4.0
|
|
4
4
|
Summary: Some classes for RobotCode plugin management
|
|
5
5
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
6
6
|
Project-URL: Documentation, https://github.com/robotcodedev/robotcode#readme
|
|
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
24
24
|
Classifier: Topic :: Utilities
|
|
25
25
|
Classifier: Typing :: Typed
|
|
26
26
|
Requires-Python: >=3.10
|
|
27
|
-
Requires-Dist: click>=8.
|
|
27
|
+
Requires-Dist: click>=8.2.0
|
|
28
28
|
Requires-Dist: colorama>=0.4.6
|
|
29
29
|
Requires-Dist: pluggy>=1.0.0
|
|
30
30
|
Requires-Dist: tomli-w>=1.0.0
|
|
@@ -335,9 +335,12 @@ class Application:
|
|
|
335
335
|
self.verbose("Aborted!", file=sys.stderr)
|
|
336
336
|
sys.exit(253)
|
|
337
337
|
|
|
338
|
-
def exit(self, code: int = 0) -> None:
|
|
338
|
+
def exit(self, code: int = 0, fast: bool = False) -> None:
|
|
339
339
|
self.verbose(f"Exit with code {code}")
|
|
340
|
-
|
|
340
|
+
if fast:
|
|
341
|
+
os._exit(code)
|
|
342
|
+
else:
|
|
343
|
+
sys.exit(code)
|
|
341
344
|
|
|
342
345
|
@contextmanager
|
|
343
346
|
def chdir(self, path: Union[str, Path, None]) -> Iterator[Optional[Path]]:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.4.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.3.0"
|
|
File without changes
|
|
File without changes
|
{robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/aliases.py
RENAMED
|
File without changes
|
{robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/options.py
RENAMED
|
File without changes
|
{robotcode_plugin-2.3.0 → robotcode_plugin-2.4.0}/src/robotcode/plugin/click_helper/types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|