robotcode-robot 0.62.2__py3-none-any.whl → 0.63.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- robotcode/robot/__version__.py +1 -1
- robotcode/robot/utils.py +6 -2
- {robotcode_robot-0.62.2.dist-info → robotcode_robot-0.63.0.dist-info}/METADATA +2 -2
- {robotcode_robot-0.62.2.dist-info → robotcode_robot-0.63.0.dist-info}/RECORD +6 -6
- {robotcode_robot-0.62.2.dist-info → robotcode_robot-0.63.0.dist-info}/WHEEL +0 -0
- {robotcode_robot-0.62.2.dist-info → robotcode_robot-0.63.0.dist-info}/licenses/LICENSE.txt +0 -0
robotcode/robot/__version__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.
|
1
|
+
__version__ = "0.63.0"
|
robotcode/robot/utils.py
CHANGED
@@ -2,13 +2,17 @@ from typing import Optional
|
|
2
2
|
|
3
3
|
from robotcode.core.utils.version import Version, create_version_from_str
|
4
4
|
|
5
|
+
import robot.version
|
6
|
+
|
5
7
|
_robot_version: Optional[Version] = None
|
6
8
|
|
7
9
|
|
8
10
|
def get_robot_version() -> Version:
|
9
11
|
global _robot_version
|
10
12
|
if _robot_version is None:
|
11
|
-
import robot.version
|
12
|
-
|
13
13
|
_robot_version = create_version_from_str(robot.version.get_version())
|
14
14
|
return _robot_version
|
15
|
+
|
16
|
+
|
17
|
+
def get_robot_version_str() -> str:
|
18
|
+
return str(robot.version.get_version())
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: robotcode-robot
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.63.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<3.12.0,>=3.2.0
|
29
|
-
Requires-Dist: robotcode-core==0.
|
29
|
+
Requires-Dist: robotcode-core==0.63.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
|
@@ -1,12 +1,12 @@
|
|
1
1
|
robotcode/robot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
robotcode/robot/__version__.py,sha256=
|
2
|
+
robotcode/robot/__version__.py,sha256=Q5rNe5SDDfUHvL3frAP-ZMPMx4ucG3RXhgWSZiluxeM,23
|
3
3
|
robotcode/robot/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
|
4
|
-
robotcode/robot/utils.py,sha256=
|
4
|
+
robotcode/robot/utils.py,sha256=aW_jxCqt1PR1LYu2LLWsm8lIqIqAi2ZBinACGdiLelE,448
|
5
5
|
robotcode/robot/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
robotcode/robot/config/loader.py,sha256=VcODWZzHT5GO7qS2od7MdeMVNtSchP6d4gp8ICEhrg4,5655
|
7
7
|
robotcode/robot/config/model.py,sha256=TaRUFWdb9j-f_ovkVhZPzbDgWzbmIRUaA0_NgoB-Pq0,80952
|
8
8
|
robotcode/robot/config/utils.py,sha256=hX-bMn9CFqxrcwQo-WPnRXh1PK434HYbLQgZp89ZHeE,2447
|
9
|
-
robotcode_robot-0.
|
10
|
-
robotcode_robot-0.
|
11
|
-
robotcode_robot-0.
|
12
|
-
robotcode_robot-0.
|
9
|
+
robotcode_robot-0.63.0.dist-info/METADATA,sha256=vEMFqjemC2_fBiU0uSGq0--4f0hlj6FvqlwvemHQ1No,2221
|
10
|
+
robotcode_robot-0.63.0.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
|
11
|
+
robotcode_robot-0.63.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
12
|
+
robotcode_robot-0.63.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|