robotcode-robot 0.57.2__tar.gz → 0.57.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode-robot
3
- Version: 0.57.2
3
+ Version: 0.57.3
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.9.0,>=3.2.0
29
- Requires-Dist: robotcode-core==0.57.2
29
+ Requires-Dist: robotcode-core==0.57.3
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
@@ -29,7 +29,7 @@ dependencies = [
29
29
  "robotframework>=4.1.0",
30
30
  "tomli>=1.1.0; python_version < '3.11'",
31
31
  "platformdirs<3.9.0,>=3.2.0",
32
- "robotcode-core==0.57.2",
32
+ "robotcode-core==0.57.3",
33
33
  ]
34
34
  dynamic = ["version"]
35
35
 
@@ -0,0 +1 @@
1
+ __version__ = "0.57.3"
@@ -120,8 +120,8 @@ class Expression:
120
120
 
121
121
  Examples:
122
122
  ```toml
123
- if = "re.match(r'^\\d+$', environ.get('TEST_VAR', ''))"
124
- if = "platform.system() == 'Linux'"
123
+ expr = "re.match(r'^\\d+$', environ.get('TEST_VAR', ''))"
124
+ expr = "platform.system() == 'Linux'"
125
125
  ```
126
126
  """,
127
127
  no_default=True,
@@ -1 +0,0 @@
1
- __version__ = "0.57.2"