robotcode 1.2.0__py3-none-any.whl → 1.3.0.dev1__py3-none-any.whl
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/cli/__init__.py +2 -2
- robotcode/cli/__version__.py +1 -1
- {robotcode-1.2.0.dist-info → robotcode-1.3.0.dev1.dist-info}/METADATA +16 -16
- robotcode-1.3.0.dev1.dist-info/RECORD +12 -0
- robotcode-1.2.0.dist-info/RECORD +0 -12
- {robotcode-1.2.0.dist-info → robotcode-1.3.0.dev1.dist-info}/WHEEL +0 -0
- {robotcode-1.2.0.dist-info → robotcode-1.3.0.dev1.dist-info}/entry_points.txt +0 -0
- {robotcode-1.2.0.dist-info → robotcode-1.3.0.dev1.dist-info}/licenses/LICENSE.txt +0 -0
robotcode/cli/__init__.py
CHANGED
@@ -22,8 +22,8 @@ from .commands import config, profiles
|
|
22
22
|
old_make_metavar = click.Parameter.make_metavar
|
23
23
|
|
24
24
|
|
25
|
-
def my_make_metavar(self: click.Parameter) -> str:
|
26
|
-
metavar = old_make_metavar(self)
|
25
|
+
def my_make_metavar(self: click.Parameter, *args: Any, **kwargs: Any) -> str:
|
26
|
+
metavar = old_make_metavar(self, *args, **kwargs)
|
27
27
|
|
28
28
|
if isinstance(self, click.Option) and self.multiple:
|
29
29
|
metavar += " *"
|
robotcode/cli/__version__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.
|
1
|
+
__version__ = "1.3.0-dev1"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0.dev1
|
4
4
|
Summary: Command line interface for RobotCode
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
@@ -34,39 +34,39 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
34
34
|
Classifier: Topic :: Utilities
|
35
35
|
Classifier: Typing :: Typed
|
36
36
|
Requires-Python: >=3.8
|
37
|
-
Requires-Dist: robotcode-core==1.
|
38
|
-
Requires-Dist: robotcode-plugin==1.
|
39
|
-
Requires-Dist: robotcode-robot==1.
|
37
|
+
Requires-Dist: robotcode-core==1.3.0-dev1
|
38
|
+
Requires-Dist: robotcode-plugin==1.3.0-dev1
|
39
|
+
Requires-Dist: robotcode-robot==1.3.0-dev1
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: docutils; extra == 'all'
|
42
42
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
43
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==1.
|
45
|
-
Requires-Dist: robotcode-debugger==1.
|
46
|
-
Requires-Dist: robotcode-language-server==1.
|
47
|
-
Requires-Dist: robotcode-repl-server==1.
|
48
|
-
Requires-Dist: robotcode-repl==1.
|
49
|
-
Requires-Dist: robotcode-runner==1.
|
44
|
+
Requires-Dist: robotcode-analyze==1.3.0-dev1; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-debugger==1.3.0-dev1; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-language-server==1.3.0-dev1; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl-server==1.3.0-dev1; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-repl==1.3.0-dev1; extra == 'all'
|
49
|
+
Requires-Dist: robotcode-runner==1.3.0-dev1; extra == 'all'
|
50
50
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
51
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
52
52
|
Provides-Extra: analyze
|
53
|
-
Requires-Dist: robotcode-analyze==1.
|
53
|
+
Requires-Dist: robotcode-analyze==1.3.0-dev1; extra == 'analyze'
|
54
54
|
Provides-Extra: colored
|
55
55
|
Requires-Dist: rich; extra == 'colored'
|
56
56
|
Provides-Extra: debugger
|
57
|
-
Requires-Dist: robotcode-debugger==1.
|
57
|
+
Requires-Dist: robotcode-debugger==1.3.0-dev1; extra == 'debugger'
|
58
58
|
Provides-Extra: languageserver
|
59
|
-
Requires-Dist: robotcode-language-server==1.
|
59
|
+
Requires-Dist: robotcode-language-server==1.3.0-dev1; extra == 'languageserver'
|
60
60
|
Provides-Extra: lint
|
61
61
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
62
62
|
Provides-Extra: repl
|
63
|
-
Requires-Dist: robotcode-repl==1.
|
63
|
+
Requires-Dist: robotcode-repl==1.3.0-dev1; extra == 'repl'
|
64
64
|
Provides-Extra: replserver
|
65
|
-
Requires-Dist: robotcode-repl-server==1.
|
65
|
+
Requires-Dist: robotcode-repl-server==1.3.0-dev1; extra == 'replserver'
|
66
66
|
Provides-Extra: rest
|
67
67
|
Requires-Dist: docutils; extra == 'rest'
|
68
68
|
Provides-Extra: runner
|
69
|
-
Requires-Dist: robotcode-runner==1.
|
69
|
+
Requires-Dist: robotcode-runner==1.3.0-dev1; extra == 'runner'
|
70
70
|
Provides-Extra: tidy
|
71
71
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
72
72
|
Provides-Extra: yaml
|
@@ -0,0 +1,12 @@
|
|
1
|
+
robotcode/cli/__init__.py,sha256=yhTwDKI4vuM-KEj3p41if2eqdR5q3CQkirCVW0ylkuE,8405
|
2
|
+
robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
|
3
|
+
robotcode/cli/__version__.py,sha256=AWwdr9SBHDif_MzS0HLtSq_6ipM55E-2k8Y5FUnKvd8,27
|
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=0Jmf7HDIo7IIaOMU9M_bYi7PdHAfcae6x3SW93NA3EA,10481
|
7
|
+
robotcode/cli/commands/profiles.py,sha256=5H9lvSVCMggWXf0IH54QtgDgqupEEvpcUrEsTZvZsNM,6127
|
8
|
+
robotcode-1.3.0.dev1.dist-info/METADATA,sha256=koBa0o0xVOLI8pvmJchuj3KeX9QUoHLVSxphs28Fwpc,11873
|
9
|
+
robotcode-1.3.0.dev1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
robotcode-1.3.0.dev1.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
|
11
|
+
robotcode-1.3.0.dev1.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
12
|
+
robotcode-1.3.0.dev1.dist-info/RECORD,,
|
robotcode-1.2.0.dist-info/RECORD
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
robotcode/cli/__init__.py,sha256=vSnph47wTpm-O5Wdhq-IM4-Oq5rDgVoP_NANxVSgiVE,8361
|
2
|
-
robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
|
3
|
-
robotcode/cli/__version__.py,sha256=MpAT5hgNoHnTtG1XRD_GV_A7QrHVU6vJjGSw_8qMGA4,22
|
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=0Jmf7HDIo7IIaOMU9M_bYi7PdHAfcae6x3SW93NA3EA,10481
|
7
|
-
robotcode/cli/commands/profiles.py,sha256=5H9lvSVCMggWXf0IH54QtgDgqupEEvpcUrEsTZvZsNM,6127
|
8
|
-
robotcode-1.2.0.dist-info/METADATA,sha256=10GwIIoA6_8c0hoMxtA3-2NSWzD__SwhTzMsQJ5b4CU,11793
|
9
|
-
robotcode-1.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
-
robotcode-1.2.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
|
11
|
-
robotcode-1.2.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
12
|
-
robotcode-1.2.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|