robotcode-robot 0.76.2__tar.gz → 0.77.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_robot-0.76.2 → robotcode_robot-0.77.0}/PKG-INFO +2 -2
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/pyproject.toml +1 -1
- robotcode_robot-0.77.0/src/robotcode/robot/__version__.py +1 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/library_doc.py +5 -5
- robotcode_robot-0.76.2/src/robotcode/robot/__version__.py +0 -1
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/.gitignore +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/LICENSE.txt +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/README.md +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/__init__.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/config/__init__.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/config/loader.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/config/model.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/config/utils.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/__init__.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/document_cache_helper.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/entities.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/errors.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/imports_manager.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/model_helper.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/namespace.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/namespace_analyzer.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/workspace_config.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/py.typed +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/__init__.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/ast.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/markdownformatter.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/match.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/robot_path.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/stubs.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/variables.py +0 -0
- {robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/utils/visitor.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: robotcode-robot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.77.0
|
|
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://github.com/sponsors/d-biehl
|
|
@@ -26,7 +26,7 @@ Classifier: Topic :: Utilities
|
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
28
|
Requires-Dist: platformdirs<4.2.0,>=3.2.0
|
|
29
|
-
Requires-Dist: robotcode-core==0.
|
|
29
|
+
Requires-Dist: robotcode-core==0.77.0
|
|
30
30
|
Requires-Dist: robotframework>=4.1.0
|
|
31
31
|
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.77.0"
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/library_doc.py
RENAMED
|
@@ -1618,9 +1618,9 @@ def _find_library_internal(
|
|
|
1618
1618
|
|
|
1619
1619
|
robot_variables = None
|
|
1620
1620
|
|
|
1621
|
-
|
|
1622
|
-
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
1621
|
+
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
1623
1622
|
|
|
1623
|
+
if contains_variable(name, "$@&%"):
|
|
1624
1624
|
try:
|
|
1625
1625
|
name = robot_variables.replace_string(name, ignore_errors=False)
|
|
1626
1626
|
except DataError as error:
|
|
@@ -2048,9 +2048,9 @@ def _find_variables_internal(
|
|
|
2048
2048
|
|
|
2049
2049
|
_update_env(working_dir)
|
|
2050
2050
|
|
|
2051
|
-
|
|
2052
|
-
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
2051
|
+
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
2053
2052
|
|
|
2053
|
+
if contains_variable(name, "$@&%"):
|
|
2054
2054
|
try:
|
|
2055
2055
|
name = robot_variables.replace_string(name, ignore_errors=False)
|
|
2056
2056
|
except DataError as error:
|
|
@@ -2351,8 +2351,8 @@ def find_file(
|
|
|
2351
2351
|
) -> str:
|
|
2352
2352
|
_update_env(working_dir)
|
|
2353
2353
|
|
|
2354
|
+
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
2354
2355
|
if contains_variable(name, "$@&%"):
|
|
2355
|
-
robot_variables = resolve_robot_variables(working_dir, base_dir, command_line_variables, variables)
|
|
2356
2356
|
try:
|
|
2357
2357
|
name = robot_variables.replace_string(name, ignore_errors=False)
|
|
2358
2358
|
except DataError as error:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.76.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
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/entities.py
RENAMED
|
File without changes
|
|
File without changes
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/imports_manager.py
RENAMED
|
File without changes
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/model_helper.py
RENAMED
|
File without changes
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/src/robotcode/robot/diagnostics/namespace.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_robot-0.76.2 → robotcode_robot-0.77.0}/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
|