robotcode-repl-server 2.5.0__tar.gz → 2.6.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.
@@ -331,7 +331,7 @@ output.xml
331
331
  bundled/libs
332
332
 
333
333
  # robotframework
334
- results/
334
+ /results/
335
335
 
336
336
  # kilocode
337
337
  .kilocode/
@@ -339,3 +339,7 @@ results/
339
339
  # .agents
340
340
  .agents/
341
341
  skills-lock.json
342
+ .claude
343
+
344
+ # sarif files
345
+ /**/*.sarif.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-repl-server
3
- Version: 2.5.0
3
+ Version: 2.6.0
4
4
  Summary: RobotCode REPL Server for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -25,8 +25,8 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
25
25
  Classifier: Topic :: Utilities
26
26
  Classifier: Typing :: Typed
27
27
  Requires-Python: >=3.10
28
- Requires-Dist: robotcode-jsonrpc2
29
- Requires-Dist: robotcode-runner
28
+ Requires-Dist: robotcode-jsonrpc2==2.6.0
29
+ Requires-Dist: robotcode-runner==2.6.0
30
30
  Description-Content-Type: text/markdown
31
31
 
32
32
  # robotcode-repl-server
@@ -28,8 +28,8 @@ classifiers = [
28
28
  ]
29
29
  dynamic = ["version"]
30
30
  dependencies = [
31
- "robotcode-jsonrpc2",
32
- "robotcode-runner"
31
+ "robotcode-jsonrpc2==2.6.0",
32
+ "robotcode-runner==2.6.0"
33
33
  ]
34
34
 
35
35
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "2.6.0"
@@ -154,9 +154,11 @@ def run_jsonrpc_server(
154
154
  "--source",
155
155
  type=click.Path(path_type=Path),
156
156
  metavar="FILE",
157
- help="Specifies the path to a source file. This file must not exist and will neither be read nor written. "
158
- "It is used solely to set the current working directory for the REPL script "
159
- "and to assign a name to the internal suite.",
157
+ help="Use the parent directory of FILE as the REPL's working directory. "
158
+ "Relative paths inside `Import Resource`, `Import Library`, "
159
+ "file-based variables, etc. resolve against that directory. "
160
+ "The file itself is never read or written, so the path doesn't "
161
+ "need to exist.",
160
162
  )
161
163
  @click.argument(
162
164
  "files",
@@ -217,8 +219,8 @@ def repl_server(
217
219
  run_repl(
218
220
  interpreter=interpreter,
219
221
  app=app,
220
- variablefile=variable,
221
- variable=variablefile,
222
+ variable=variable,
223
+ variablefile=variablefile,
222
224
  pythonpath=pythonpath,
223
225
  outputdir=outputdir,
224
226
  output=output,
@@ -1 +0,0 @@
1
- __version__ = "2.5.0"