robotcode-plugin 1.3.0.dev6__tar.gz → 1.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-1.3.0.dev6 → robotcode_plugin-1.5.0}/PKG-INFO +1 -1
- robotcode_plugin-1.5.0/src/robotcode/plugin/__version__.py +1 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/types.py +2 -2
- robotcode_plugin-1.3.0.dev6/src/robotcode/plugin/__version__.py +0 -1
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/.gitignore +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/LICENSE.txt +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/README.md +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/pyproject.toml +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/__init__.py +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/aliases.py +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/options.py +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/manager.py +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/py.typed +0 -0
- {robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.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: 1.
|
|
3
|
+
Version: 1.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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.5.0"
|
{robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/types.py
RENAMED
|
@@ -20,7 +20,7 @@ import click
|
|
|
20
20
|
T = TypeVar("T", bound=Enum)
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
class EnumChoice(click.Choice, Generic[T]):
|
|
23
|
+
class EnumChoice(click.Choice, Generic[T]): # type: ignore[type-arg]
|
|
24
24
|
"""A click.Choice that accepts Enum values."""
|
|
25
25
|
|
|
26
26
|
def __init__(
|
|
@@ -30,7 +30,7 @@ class EnumChoice(click.Choice, Generic[T]):
|
|
|
30
30
|
excluded: Optional[Set[T]] = None,
|
|
31
31
|
) -> None:
|
|
32
32
|
super().__init__(
|
|
33
|
-
choices if excluded is None else (set(choices).difference(excluded)),
|
|
33
|
+
choices if excluded is None else (set(choices).difference(excluded)),
|
|
34
34
|
case_sensitive,
|
|
35
35
|
)
|
|
36
36
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.3.0-dev.6"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/aliases.py
RENAMED
|
File without changes
|
{robotcode_plugin-1.3.0.dev6 → robotcode_plugin-1.5.0}/src/robotcode/plugin/click_helper/options.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|