robotcode-plugin 2.4.0__tar.gz → 2.5.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.4.0 → robotcode_plugin-2.5.0}/.gitignore +5 -1
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/PKG-INFO +1 -1
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/__init__.py +10 -1
- robotcode_plugin-2.5.0/src/robotcode/plugin/__version__.py +1 -0
- robotcode_plugin-2.4.0/src/robotcode/plugin/__version__.py +0 -1
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/README.md +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/pyproject.toml +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/aliases.py +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/options.py +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/types.py +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/manager.py +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/py.typed +0 -0
- {robotcode_plugin-2.4.0 → robotcode_plugin-2.5.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.5.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
|
|
@@ -122,6 +122,15 @@ class Application:
|
|
|
122
122
|
ColoredOutput.YES,
|
|
123
123
|
]
|
|
124
124
|
|
|
125
|
+
@property
|
|
126
|
+
def has_rich(self) -> bool:
|
|
127
|
+
try:
|
|
128
|
+
import rich # noqa: F401
|
|
129
|
+
|
|
130
|
+
return True
|
|
131
|
+
except ImportError:
|
|
132
|
+
return False
|
|
133
|
+
|
|
125
134
|
def verbose(
|
|
126
135
|
self,
|
|
127
136
|
message: Union[str, Callable[[], Any], None],
|
|
@@ -333,7 +342,7 @@ class Application:
|
|
|
333
342
|
|
|
334
343
|
def keyboard_interrupt(self) -> None:
|
|
335
344
|
self.verbose("Aborted!", file=sys.stderr)
|
|
336
|
-
|
|
345
|
+
self.exit(253, fast=True)
|
|
337
346
|
|
|
338
347
|
def exit(self, code: int = 0, fast: bool = False) -> None:
|
|
339
348
|
self.verbose(f"Exit with code {code}")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.5.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.4.0"
|
|
File without changes
|
|
File without changes
|
{robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/aliases.py
RENAMED
|
File without changes
|
{robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/options.py
RENAMED
|
File without changes
|
{robotcode_plugin-2.4.0 → robotcode_plugin-2.5.0}/src/robotcode/plugin/click_helper/types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|