robotcode-runner 0.89.0__tar.gz → 0.90.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_runner-0.89.0 → robotcode_runner-0.90.0}/PKG-INFO +5 -5
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/pyproject.toml +4 -4
- robotcode_runner-0.90.0/src/robotcode/runner/__version__.py +1 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/discover/discover.py +0 -2
- robotcode_runner-0.89.0/src/robotcode/runner/__version__.py +0 -1
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/.gitignore +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/LICENSE.txt +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/README.md +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/__init__.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/__init__.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/discover/__init__.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/libdoc.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/rebot.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/robot.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/testdoc.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/hooks.py +0 -0
- {robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: robotcode-runner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.90.0
|
|
4
4
|
Summary: RobotCode runner plugin for Robot Framework
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -25,10 +25,10 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
25
|
Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-modifiers==0.
|
|
29
|
-
Requires-Dist: robotcode-plugin==0.
|
|
30
|
-
Requires-Dist: robotcode-robot==0.
|
|
31
|
-
Requires-Dist: robotcode==0.
|
|
28
|
+
Requires-Dist: robotcode-modifiers==0.90.0
|
|
29
|
+
Requires-Dist: robotcode-plugin==0.90.0
|
|
30
|
+
Requires-Dist: robotcode-robot==0.90.0
|
|
31
|
+
Requires-Dist: robotcode==0.90.0
|
|
32
32
|
Requires-Dist: robotframework>=4.1.0
|
|
33
33
|
Description-Content-Type: text/markdown
|
|
34
34
|
|
|
@@ -28,10 +28,10 @@ classifiers = [
|
|
|
28
28
|
dynamic = ["version"]
|
|
29
29
|
dependencies = [
|
|
30
30
|
"robotframework>=4.1.0",
|
|
31
|
-
"robotcode-robot==0.
|
|
32
|
-
"robotcode-modifiers==0.
|
|
33
|
-
"robotcode-plugin==0.
|
|
34
|
-
"robotcode==0.
|
|
31
|
+
"robotcode-robot==0.90.0",
|
|
32
|
+
"robotcode-modifiers==0.90.0",
|
|
33
|
+
"robotcode-plugin==0.90.0",
|
|
34
|
+
"robotcode==0.90.0",
|
|
35
35
|
]
|
|
36
36
|
|
|
37
37
|
[project.entry-points.robotcode]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.90.0"
|
{robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/discover/discover.py
RENAMED
|
@@ -912,8 +912,6 @@ def info(app: Application) -> None:
|
|
|
912
912
|
if app.config.output_format is None or app.config.output_format == OutputFormat.TEXT:
|
|
913
913
|
for key, value in as_dict(info, remove_defaults=True).items():
|
|
914
914
|
app.echo_via_pager(f"{key}: {value}")
|
|
915
|
-
|
|
916
|
-
# app.print_data(info, remove_defaults=True)
|
|
917
915
|
else:
|
|
918
916
|
app.print_data(info, remove_defaults=True)
|
|
919
917
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.89.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_runner-0.89.0 → robotcode_runner-0.90.0}/src/robotcode/runner/cli/discover/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|