robotcode-robot 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.
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/PKG-INFO +7 -6
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/pyproject.toml +8 -7
- robotcode_robot-2.0.1/src/robotcode/robot/__version__.py +1 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/imports_manager.py +1 -1
- robotcode_robot-1.9.0/src/robotcode/robot/__version__.py +0 -1
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/.gitignore +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/README.md +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/__init__.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/config/__init__.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/config/loader.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/config/model.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/config/utils.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/__init__.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/data_cache.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/diagnostics_modifier.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/document_cache_helper.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/entities.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/errors.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/keyword_finder.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/library_doc.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/model_helper.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/namespace.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/namespace_analyzer.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/workspace_config.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/py.typed +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/__init__.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/ast.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/markdownformatter.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/match.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/robot_path.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/stubs.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/variables.py +0 -0
- {robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/visitor.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode-robot
|
3
|
-
Version:
|
3
|
+
Version: 2.0.1
|
4
4
|
Summary: Support classes for RobotCode for handling Robot Framework projects.
|
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.
|
27
|
-
Requires-Dist: platformdirs
|
28
|
-
Requires-Dist: robotcode-core==
|
27
|
+
Requires-Python: >=3.10
|
28
|
+
Requires-Dist: platformdirs>=4.3
|
29
|
+
Requires-Dist: robotcode-core==2.0.1
|
29
30
|
Requires-Dist: robotframework>=4.1.0
|
30
31
|
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
31
32
|
Description-Content-Type: text/markdown
|
@@ -7,17 +7,18 @@ build-backend = "hatchling.build"
|
|
7
7
|
name = "robotcode-robot"
|
8
8
|
description = 'Support classes for RobotCode for handling Robot Framework projects.'
|
9
9
|
readme = { "file" = "README.md", "content-type" = "text/markdown" }
|
10
|
-
requires-python = ">=3.
|
11
|
-
license = {text = "Apache-2.0"}
|
10
|
+
requires-python = ">=3.10"
|
11
|
+
license = { text = "Apache-2.0" }
|
12
12
|
keywords = []
|
13
13
|
authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
|
14
14
|
classifiers = [
|
15
15
|
"Development Status :: 5 - Production/Stable",
|
16
16
|
"Programming Language :: Python",
|
17
|
-
"Programming Language :: Python :: 3.8",
|
18
|
-
"Programming Language :: Python :: 3.9",
|
19
17
|
"Programming Language :: Python :: 3.10",
|
20
18
|
"Programming Language :: Python :: 3.11",
|
19
|
+
"Programming Language :: Python :: 3.12",
|
20
|
+
"Programming Language :: Python :: 3.13",
|
21
|
+
"Programming Language :: Python :: 3.14",
|
21
22
|
"Programming Language :: Python :: Implementation :: CPython",
|
22
23
|
"Programming Language :: Python :: Implementation :: PyPy",
|
23
24
|
"Operating System :: OS Independent",
|
@@ -29,8 +30,8 @@ classifiers = [
|
|
29
30
|
dependencies = [
|
30
31
|
"robotframework>=4.1.0",
|
31
32
|
"tomli>=1.1.0; python_version < '3.11'",
|
32
|
-
"platformdirs>=
|
33
|
-
"robotcode-core==
|
33
|
+
"platformdirs>=4.3",
|
34
|
+
"robotcode-core==2.0.1",
|
34
35
|
]
|
35
36
|
dynamic = ["version"]
|
36
37
|
|
@@ -57,4 +58,4 @@ only-include = ["src"]
|
|
57
58
|
|
58
59
|
[tool.hatch.envs.build]
|
59
60
|
detached = true
|
60
|
-
python = "
|
61
|
+
python = "310"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "2.0.1"
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/imports_manager.py
RENAMED
@@ -624,7 +624,7 @@ class ImportsManager:
|
|
624
624
|
|
625
625
|
self.load_library_timeout = load_library_timeout
|
626
626
|
|
627
|
-
self._logger.
|
627
|
+
self._logger.trace(lambda: f"Using LoadLibrary timeout of {self.load_library_timeout} seconds")
|
628
628
|
|
629
629
|
self._logger.trace(
|
630
630
|
lambda: f"Using load_library_timeout={self.load_library_timeout} (config/env/default)",
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.9.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/data_cache.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/keyword_finder.py
RENAMED
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/library_doc.py
RENAMED
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/model_helper.py
RENAMED
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/namespace.py
RENAMED
File without changes
|
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/diagnostics/workspace_config.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{robotcode_robot-1.9.0 → robotcode_robot-2.0.1}/src/robotcode/robot/utils/markdownformatter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|