robotcode 0.45.0__py3-none-any.whl → 0.47.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
robotcode/cli/__init__.py CHANGED
@@ -12,6 +12,8 @@ from robotcode.plugin.manager import PluginManager
12
12
  from .__version__ import __version__
13
13
  from .commands import config, profiles
14
14
 
15
+ # mypy: disable-error-code="misc, arg-type, attr-defined"
16
+
15
17
 
16
18
  @click.group(
17
19
  cls=AliasedGroup,
@@ -1 +1 @@
1
- __version__ = "0.45.0"
1
+ __version__ = "0.47.0"
@@ -15,6 +15,8 @@ from robotcode.robot.config.loader import (
15
15
  from robotcode.robot.config.model import LibDocProfile, RebotProfile, RobotConfig, TestDocProfile
16
16
  from robotcode.robot.config.utils import get_config_files
17
17
 
18
+ # mypy: disable-error-code="misc, arg-type, attr-defined"
19
+
18
20
 
19
21
  @click.group(
20
22
  invoke_without_command=False,
@@ -9,6 +9,8 @@ from robotcode.robot.config.loader import (
9
9
  )
10
10
  from robotcode.robot.config.utils import get_config_files
11
11
 
12
+ # mypy: disable-error-code="misc, arg-type, attr-defined"
13
+
12
14
 
13
15
  @click.group(
14
16
  invoke_without_command=False,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode
3
- Version: 0.45.0
3
+ Version: 0.47.0
4
4
  Summary: Language server, debugger and tools for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://github.com/sponsors/d-biehl
@@ -33,33 +33,33 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
33
33
  Classifier: Topic :: Utilities
34
34
  Classifier: Typing :: Typed
35
35
  Requires-Python: >=3.8
36
- Requires-Dist: robotcode-plugin==0.45.0
37
- Requires-Dist: robotcode-robot==0.45.0
36
+ Requires-Dist: robotcode-plugin==0.47.0
37
+ Requires-Dist: robotcode-robot==0.47.0
38
38
  Provides-Extra: all
39
39
  Requires-Dist: docutils; extra == 'all'
40
40
  Requires-Dist: pyyaml>=5.4; extra == 'all'
41
41
  Requires-Dist: rich; extra == 'all'
42
- Requires-Dist: robotcode-analyze==0.45.0; extra == 'all'
43
- Requires-Dist: robotcode-debugger==0.45.0; extra == 'all'
44
- Requires-Dist: robotcode-language-server==0.45.0; extra == 'all'
45
- Requires-Dist: robotcode-runner==0.45.0; extra == 'all'
42
+ Requires-Dist: robotcode-analyze==0.47.0; extra == 'all'
43
+ Requires-Dist: robotcode-debugger==0.47.0; extra == 'all'
44
+ Requires-Dist: robotcode-language-server==0.47.0; extra == 'all'
45
+ Requires-Dist: robotcode-runner==0.47.0; extra == 'all'
46
46
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
47
47
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
48
48
  Requires-Dist: tomli-w; extra == 'all'
49
49
  Provides-Extra: analyze
50
- Requires-Dist: robotcode-analyze==0.45.0; extra == 'analyze'
50
+ Requires-Dist: robotcode-analyze==0.47.0; extra == 'analyze'
51
51
  Provides-Extra: colored
52
52
  Requires-Dist: rich; extra == 'colored'
53
53
  Provides-Extra: debugger
54
- Requires-Dist: robotcode-debugger==0.45.0; extra == 'debugger'
54
+ Requires-Dist: robotcode-debugger==0.47.0; extra == 'debugger'
55
55
  Provides-Extra: languageserver
56
- Requires-Dist: robotcode-language-server==0.45.0; extra == 'languageserver'
56
+ Requires-Dist: robotcode-language-server==0.47.0; extra == 'languageserver'
57
57
  Provides-Extra: lint
58
58
  Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
59
59
  Provides-Extra: rest
60
60
  Requires-Dist: docutils; extra == 'rest'
61
61
  Provides-Extra: runner
62
- Requires-Dist: robotcode-runner==0.45.0; extra == 'runner'
62
+ Requires-Dist: robotcode-runner==0.47.0; extra == 'runner'
63
63
  Provides-Extra: tidy
64
64
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
65
65
  Provides-Extra: toml
@@ -0,0 +1,12 @@
1
+ robotcode/cli/__init__.py,sha256=cRd2dKLwRbNHusFKvSByGSSLnYkJPYpMQG4oLHtLE0k,6244
2
+ robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
3
+ robotcode/cli/__version__.py,sha256=aqLqdmGXCjcE1UvvJF8OHznHKbGMeoRrk-C4_mjzdPs,23
4
+ robotcode/cli/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
5
+ robotcode/cli/commands/__init__.py,sha256=XJHRt_YwMO2Ni2EfL2aj4jkJXMVG6NGFTpzvSVgIRnQ,92
6
+ robotcode/cli/commands/config.py,sha256=C7ob2Vrw5b6kBUgy3GDJbkOmgu1QFUAjR6vkY-0tKvQ,8792
7
+ robotcode/cli/commands/profiles.py,sha256=9qklGj16xAl3dKObeUgJiYmxLPj1VH8DZt4PVXj3B70,3262
8
+ robotcode-0.47.0.dist-info/METADATA,sha256=bAxCAIdmOM05kABVQ8tPzfSTa_KbxM4tkWEnZbtoSVM,13231
9
+ robotcode-0.47.0.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
10
+ robotcode-0.47.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
11
+ robotcode-0.47.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
12
+ robotcode-0.47.0.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- robotcode/cli/__init__.py,sha256=xoDLnIi173RQc5armOXzVc91qfk7l3M9sGXDCYfrEvc,6185
2
- robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
3
- robotcode/cli/__version__.py,sha256=p2Xvd610sh3godS2s3KpBCKAbfwwnEs-mH0Q6wQI5LE,23
4
- robotcode/cli/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
5
- robotcode/cli/commands/__init__.py,sha256=XJHRt_YwMO2Ni2EfL2aj4jkJXMVG6NGFTpzvSVgIRnQ,92
6
- robotcode/cli/commands/config.py,sha256=2zF6PtBgfiD_x9ZEUy7M6BjAZA_Hj2ijDeK5oFVJZ_I,8733
7
- robotcode/cli/commands/profiles.py,sha256=2zgEOqp_O7zJpr-7zDTZFy6fidgSSKdmZzPRCFga44E,3203
8
- robotcode-0.45.0.dist-info/METADATA,sha256=pDG8HAu9BBjoyUgkVf0c_hZjsNIa0JcfiZH1rqgx9Qk,13231
9
- robotcode-0.45.0.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
10
- robotcode-0.45.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
11
- robotcode-0.45.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
12
- robotcode-0.45.0.dist-info/RECORD,,