robotcode-repl 0.95.2__tar.gz → 0.97.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_repl-0.95.2 → robotcode_repl-0.97.0}/PKG-INFO +3 -4
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/pyproject.toml +2 -2
- robotcode_repl-0.97.0/src/robotcode/repl/__version__.py +1 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/cli/repl.py +3 -3
- robotcode_repl-0.95.2/src/robotcode/repl/__version__.py +0 -1
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/.gitignore +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/LICENSE.txt +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/README.md +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/Repl/__init__.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/Repl/repl.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/__init__.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/cli/__init__.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/hooks.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/interpreter.py +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/py.typed +0 -0
- {robotcode_repl-0.95.2 → robotcode_repl-0.97.0}/src/robotcode/repl/repl_listener.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: robotcode-repl
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.97.0
|
|
4
4
|
Summary: RobotCode REPL for Robot Framework
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -10,7 +10,6 @@ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
|
|
|
10
10
|
Project-URL: Source, https://github.com/robotcodedev/robotcode
|
|
11
11
|
Author-email: Daniel Biehl <dbiehl@live.de>
|
|
12
12
|
License: Apache-2.0
|
|
13
|
-
License-File: LICENSE.txt
|
|
14
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
14
|
Classifier: Framework :: Robot Framework
|
|
16
15
|
Classifier: Framework :: Robot Framework :: Tool
|
|
@@ -25,8 +24,8 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
24
|
Classifier: Topic :: Utilities
|
|
26
25
|
Classifier: Typing :: Typed
|
|
27
26
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-jsonrpc2==0.
|
|
29
|
-
Requires-Dist: robotcode-runner==0.
|
|
27
|
+
Requires-Dist: robotcode-jsonrpc2==0.97.0
|
|
28
|
+
Requires-Dist: robotcode-runner==0.97.0
|
|
30
29
|
Description-Content-Type: text/markdown
|
|
31
30
|
|
|
32
31
|
# robotcode-repl
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.97.0"
|
|
@@ -117,7 +117,7 @@ def run_repl(
|
|
|
117
117
|
@click.option(
|
|
118
118
|
"-V",
|
|
119
119
|
"--variablefile",
|
|
120
|
-
metavar="
|
|
120
|
+
metavar="PATH",
|
|
121
121
|
type=str,
|
|
122
122
|
multiple=True,
|
|
123
123
|
help="Python or YAML file file to read variables from. see `robot --variablefile` option.",
|
|
@@ -125,10 +125,10 @@ def run_repl(
|
|
|
125
125
|
@click.option(
|
|
126
126
|
"-P",
|
|
127
127
|
"--pythonpath",
|
|
128
|
-
metavar="
|
|
128
|
+
metavar="PATH",
|
|
129
129
|
type=str,
|
|
130
130
|
multiple=True,
|
|
131
|
-
help="Additional locations
|
|
131
|
+
help="Additional locations where to search test libraries"
|
|
132
132
|
" and other extensions when they are imported. see `robot --pythonpath` option.",
|
|
133
133
|
)
|
|
134
134
|
@click.option(
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.95.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|