robotcode 1.0.2__py3-none-any.whl → 1.1.0__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.
@@ -1 +1 @@
1
- __version__ = "1.0.2"
1
+ __version__ = "1.1.0"
@@ -149,7 +149,7 @@ def files(app: Application, paths: List[Path], user: bool = False) -> None:
149
149
 
150
150
  if app.config.output_format is None or app.config.output_format == OutputFormat.TEXT:
151
151
  for entry in result["files"]:
152
- app.echo(f'{entry["path"]} ({entry["type"].value})')
152
+ app.echo(f"{entry['path']} ({entry['type'].value})")
153
153
  else:
154
154
  app.print_data(result)
155
155
 
@@ -242,7 +242,7 @@ def _get_config_fields_for_type(
242
242
  }
243
243
  args = get_args(field.type)
244
244
 
245
- p = f"{prefix}{'' if prefix[-1]=='.' else '.'}" if prefix else ""
245
+ p = f"{prefix}{'' if prefix[-1] == '.' else '.'}" if prefix else ""
246
246
  for a in args:
247
247
  origin = get_origin(a)
248
248
  if origin is None and issubclass(a, BaseOptions):
@@ -141,8 +141,8 @@ def list(app: Application, paths: List[Path], show_hidden: bool = False, sort_by
141
141
  *(len(profile["description"]) for profile in result["profiles"]),
142
142
  )
143
143
  output += (
144
- f'| Active | Selected | Enabled | Precedence | Name{(max_name - len("Name")) * " "} '
145
- f'| Description{(max_description - len("Description")) * " "} |\n'
144
+ f"| Active | Selected | Enabled | Precedence | Name{(max_name - len('Name')) * ' '} "
145
+ f"| Description{(max_description - len('Description')) * ' '} |\n"
146
146
  )
147
147
  output += f"|:------:|:------:|:--------:|:-------:|:{max_name * '-'}-|:{max_description * '-'}-|\n"
148
148
  for selected_profiles, enabled, name, description, precedence in (
@@ -150,12 +150,12 @@ def list(app: Application, paths: List[Path], show_hidden: bool = False, sort_by
150
150
  for v in result["profiles"]
151
151
  ):
152
152
  output += (
153
- f'| {"*" if selected_profiles and enabled else " "} '
154
- f'| {"*" if selected_profiles else " "} '
155
- f'| {"*" if enabled else " "} '
156
- f'| {precedence if precedence else " "} '
157
- f'| {name}{(max_name - len(name)) * " "} '
158
- f'| {description if description else ""}{(max_description - len(description)) * " "} |\n'
153
+ f"| {'*' if selected_profiles and enabled else ' '} "
154
+ f"| {'*' if selected_profiles else ' '} "
155
+ f"| {'*' if enabled else ' '} "
156
+ f"| {precedence if precedence else ' '} "
157
+ f"| {name}{(max_name - len(name)) * ' '} "
158
+ f"| {description if description else ''}{(max_description - len(description)) * ' '} |\n"
159
159
  )
160
160
  else:
161
161
  output += "No profiles defined.\n"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 1.0.2
3
+ Version: 1.1.0
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.0.2
38
- Requires-Dist: robotcode-plugin==1.0.2
39
- Requires-Dist: robotcode-robot==1.0.2
37
+ Requires-Dist: robotcode-core==1.1.0
38
+ Requires-Dist: robotcode-plugin==1.1.0
39
+ Requires-Dist: robotcode-robot==1.1.0
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.0.2; extra == 'all'
45
- Requires-Dist: robotcode-debugger==1.0.2; extra == 'all'
46
- Requires-Dist: robotcode-language-server==1.0.2; extra == 'all'
47
- Requires-Dist: robotcode-repl-server==1.0.2; extra == 'all'
48
- Requires-Dist: robotcode-repl==1.0.2; extra == 'all'
49
- Requires-Dist: robotcode-runner==1.0.2; extra == 'all'
44
+ Requires-Dist: robotcode-analyze==1.1.0; extra == 'all'
45
+ Requires-Dist: robotcode-debugger==1.1.0; extra == 'all'
46
+ Requires-Dist: robotcode-language-server==1.1.0; extra == 'all'
47
+ Requires-Dist: robotcode-repl-server==1.1.0; extra == 'all'
48
+ Requires-Dist: robotcode-repl==1.1.0; extra == 'all'
49
+ Requires-Dist: robotcode-runner==1.1.0; 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.0.2; extra == 'analyze'
53
+ Requires-Dist: robotcode-analyze==1.1.0; 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.0.2; extra == 'debugger'
57
+ Requires-Dist: robotcode-debugger==1.1.0; extra == 'debugger'
58
58
  Provides-Extra: languageserver
59
- Requires-Dist: robotcode-language-server==1.0.2; extra == 'languageserver'
59
+ Requires-Dist: robotcode-language-server==1.1.0; 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.0.2; extra == 'repl'
63
+ Requires-Dist: robotcode-repl==1.1.0; extra == 'repl'
64
64
  Provides-Extra: replserver
65
- Requires-Dist: robotcode-repl-server==1.0.2; extra == 'replserver'
65
+ Requires-Dist: robotcode-repl-server==1.1.0; 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.0.2; extra == 'runner'
69
+ Requires-Dist: robotcode-runner==1.1.0; 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=vSnph47wTpm-O5Wdhq-IM4-Oq5rDgVoP_NANxVSgiVE,8361
2
+ robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
3
+ robotcode/cli/__version__.py,sha256=LGVQyDsWifdACo7qztwb8RWWHds1E7uQ-ZqD8SAjyw4,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.1.0.dist-info/METADATA,sha256=-wB3DI63b8txZI-M7VBPhY1KsUntDubtGXpSyqj2j-g,11793
9
+ robotcode-1.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
10
+ robotcode-1.1.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
11
+ robotcode-1.1.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
12
+ robotcode-1.1.0.dist-info/RECORD,,
@@ -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=Y3LSfRioSl2xch70pq_ULlvyECXyEtN3krVaWeGyaxk,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=84gG4LrIynfPbEQkQDYA3ZClg50ck32NZyUvAWw9g6w,10479
7
- robotcode/cli/commands/profiles.py,sha256=MQHQTRv8n5MZi1glZmpB6REF1Knhi68y6IkzmczTHXQ,6127
8
- robotcode-1.0.2.dist-info/METADATA,sha256=sSOCQtLKAevvWV4D9EEpGwnH-Dcgncu5y4EVAaSVFMk,11793
9
- robotcode-1.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
10
- robotcode-1.0.2.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
11
- robotcode-1.0.2.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
12
- robotcode-1.0.2.dist-info/RECORD,,