robotcode-debugger 0.82.3__tar.gz → 0.83.1__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_debugger-0.82.3 → robotcode_debugger-0.83.1}/PKG-INFO +3 -3
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/pyproject.toml +2 -2
- robotcode_debugger-0.83.1/src/robotcode/debugger/__version__.py +1 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/debugger.py +2 -2
- robotcode_debugger-0.82.3/src/robotcode/debugger/__version__.py +0 -1
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/.gitignore +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/LICENSE.txt +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/README.md +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/__init__.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/cli.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/dap_types.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/hooks.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/__init__.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/cli.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/client.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/run.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/server.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/listeners.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/protocol.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/py.typed +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/run.py +0 -0
- {robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: robotcode-debugger
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.83.1
|
|
4
4
|
Summary: RobotCode Debugger 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.8
|
|
28
|
-
Requires-Dist: robotcode-jsonrpc2==0.
|
|
29
|
-
Requires-Dist: robotcode-runner==0.
|
|
28
|
+
Requires-Dist: robotcode-jsonrpc2==0.83.1
|
|
29
|
+
Requires-Dist: robotcode-runner==0.83.1
|
|
30
30
|
Requires-Dist: robotframework>=4.1.0
|
|
31
31
|
Provides-Extra: debugpy
|
|
32
32
|
Requires-Dist: debugpy; extra == 'debugpy'
|
|
@@ -28,8 +28,8 @@ classifiers = [
|
|
|
28
28
|
dynamic = ["version"]
|
|
29
29
|
dependencies = [
|
|
30
30
|
"robotframework>=4.1.0",
|
|
31
|
-
"robotcode-jsonrpc2==0.
|
|
32
|
-
"robotcode-runner==0.
|
|
31
|
+
"robotcode-jsonrpc2==0.83.1",
|
|
32
|
+
"robotcode-runner==0.83.1",
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
[project.optional-dependencies]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.83.1"
|
|
@@ -1164,7 +1164,7 @@ class Debugger:
|
|
|
1164
1164
|
WINDOW_PATH_REGEX: ClassVar = re.compile(r"^(([a-z]:[\\/])|(\\\\)).*$", re.RegexFlag.IGNORECASE)
|
|
1165
1165
|
|
|
1166
1166
|
@classmethod
|
|
1167
|
-
def is_windows_path(cls, path: Union[os.PathLike[str], str]) -> bool:
|
|
1167
|
+
def is_windows_path(cls, path: Union["os.PathLike[str]", str]) -> bool:
|
|
1168
1168
|
return bool(cls.WINDOW_PATH_REGEX.fullmatch(str(path)))
|
|
1169
1169
|
|
|
1170
1170
|
@staticmethod
|
|
@@ -1174,7 +1174,7 @@ class Debugger:
|
|
|
1174
1174
|
except ValueError:
|
|
1175
1175
|
return None
|
|
1176
1176
|
|
|
1177
|
-
def map_path_to_client(self, path: Union[os.PathLike[str], str]) -> pathlib.PurePath:
|
|
1177
|
+
def map_path_to_client(self, path: Union["os.PathLike[str]", str]) -> pathlib.PurePath:
|
|
1178
1178
|
if not isinstance(path, PurePath):
|
|
1179
1179
|
path = PurePath(path)
|
|
1180
1180
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.82.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/__init__.py
RENAMED
|
File without changes
|
{robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/cli.py
RENAMED
|
File without changes
|
{robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/client.py
RENAMED
|
File without changes
|
{robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/run.py
RENAMED
|
File without changes
|
{robotcode_debugger-0.82.3 → robotcode_debugger-0.83.1}/src/robotcode/debugger/launcher/server.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|