robotcode-debugger 1.9.0__tar.gz → 2.0.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.
Files changed (24) hide show
  1. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/PKG-INFO +7 -6
  2. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/pyproject.toml +7 -6
  3. robotcode_debugger-2.0.1/src/robotcode/debugger/__version__.py +1 -0
  4. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/debugger.py +2 -1
  5. robotcode_debugger-1.9.0/src/robotcode/debugger/__version__.py +0 -1
  6. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/.gitignore +0 -0
  7. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/README.md +0 -0
  8. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/__init__.py +0 -0
  9. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/cli.py +0 -0
  10. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/dap_types.py +0 -0
  11. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/default_capabilities.py +0 -0
  12. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/hooks.py +0 -0
  13. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/id_manager.py +0 -0
  14. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/launcher/__init__.py +0 -0
  15. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/launcher/cli.py +0 -0
  16. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/launcher/client.py +0 -0
  17. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/launcher/run.py +0 -0
  18. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/launcher/server.py +0 -0
  19. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/listeners.py +0 -0
  20. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/mixins.py +0 -0
  21. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/protocol.py +0 -0
  22. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/py.typed +0 -0
  23. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/run.py +0 -0
  24. {robotcode_debugger-1.9.0 → robotcode_debugger-2.0.1}/src/robotcode/debugger/server.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode-debugger
3
- Version: 1.9.0
3
+ Version: 2.0.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
@@ -15,17 +15,18 @@ Classifier: Framework :: Robot Framework
15
15
  Classifier: Framework :: Robot Framework :: Tool
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
22
23
  Classifier: Programming Language :: Python :: Implementation :: CPython
23
24
  Classifier: Programming Language :: Python :: Implementation :: PyPy
24
25
  Classifier: Topic :: Utilities
25
26
  Classifier: Typing :: Typed
26
- Requires-Python: >=3.8
27
- Requires-Dist: robotcode-jsonrpc2==1.9.0
28
- Requires-Dist: robotcode-runner==1.9.0
27
+ Requires-Python: >=3.10
28
+ Requires-Dist: robotcode-jsonrpc2==2.0.1
29
+ Requires-Dist: robotcode-runner==2.0.1
29
30
  Requires-Dist: robotframework>=4.1.0
30
31
  Provides-Extra: debugpy
31
32
  Requires-Dist: debugpy; extra == 'debugpy'
@@ -6,17 +6,18 @@ build-backend = "hatchling.build"
6
6
  name = "robotcode-debugger"
7
7
  description = 'RobotCode Debugger for Robot Framework'
8
8
  readme = { "file" = "README.md", "content-type" = "text/markdown" }
9
- requires-python = ">=3.8"
9
+ requires-python = ">=3.10"
10
10
  license = {text = "Apache-2.0"}
11
11
  keywords = []
12
12
  authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
13
13
  classifiers = [
14
14
  "Development Status :: 5 - Production/Stable",
15
15
  "Programming Language :: Python",
16
- "Programming Language :: Python :: 3.8",
17
- "Programming Language :: Python :: 3.9",
18
16
  "Programming Language :: Python :: 3.10",
19
17
  "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
20
21
  "Programming Language :: Python :: Implementation :: CPython",
21
22
  "Programming Language :: Python :: Implementation :: PyPy",
22
23
  "Operating System :: OS Independent",
@@ -28,8 +29,8 @@ classifiers = [
28
29
  dynamic = ["version"]
29
30
  dependencies = [
30
31
  "robotframework>=4.1.0",
31
- "robotcode-jsonrpc2==1.9.0",
32
- "robotcode-runner==1.9.0",
32
+ "robotcode-jsonrpc2==2.0.1",
33
+ "robotcode-runner==2.0.1",
33
34
  ]
34
35
 
35
36
  [project.optional-dependencies]
@@ -61,4 +62,4 @@ only-include = ["src"]
61
62
 
62
63
  [tool.hatch.envs.build]
63
64
  detached = true
64
- python = "38"
65
+ python = "310"
@@ -0,0 +1 @@
1
+ __version__ = "2.0.1"
@@ -930,7 +930,8 @@ class Debugger:
930
930
  ) -> StackFrameEntry:
931
931
  path = pathlib.Path(source) if source is not None else None
932
932
  is_file = path is not None and path.is_file()
933
- if path is not None and not is_file and type in ["SETUP", "TEARDOWN"]:
933
+
934
+ if path is not None and not is_file:
934
935
  init_path = pathlib.Path(path, "__init__.robot")
935
936
  if init_path.exists() and init_path.is_file():
936
937
  is_file = True
@@ -1 +0,0 @@
1
- __version__ = "1.9.0"