robotcode 1.3.0.dev2__tar.gz → 1.3.0.dev4__tar.gz

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.
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. See [conven
7
7
  ### Bug Fixes
8
8
 
9
9
  - **cli:** Corrected monkey patching for click>=8.2.0 ([425e64d](https://github.com/robotcodedev/robotcode/commit/425e64ddf8c6a9a54ec6fe3d801253c2e3a2156a))
10
+ - **formatting:** Improve message clarity for robocop formatting ([f71d15d](https://github.com/robotcodedev/robotcode/commit/f71d15df40f8bfd1f9f325d35e1ba73bcf16c9aa))
10
11
  - **textmate:** Corrected highlightning of comments in variable section ([5204afb](https://github.com/robotcodedev/robotcode/commit/5204afbfdd7f745c3e00ebc8d59fa3ad992ec0a8))
11
12
  - **textmate:** Enhance variable assignment handling ([7333eb9](https://github.com/robotcodedev/robotcode/commit/7333eb9b2f46e2af25583af2d5346b4b92dd1137))
12
13
  - Corrected detection of robocop ([f06bcbc](https://github.com/robotcodedev/robotcode/commit/f06bcbc1c2514326567399f8e5179da6ff5f9ed7))
@@ -15,7 +16,12 @@ All notable changes to this project will be documented in this file. See [conven
15
16
  ### Features
16
17
 
17
18
  - **intellij:** Reimplement and simplified parsing and syntax highlightning ([2dcdf7c](https://github.com/robotcodedev/robotcode/commit/2dcdf7ce846e8483fb427cdc7945a084fe4c3232))
19
+ - **langserver:** Implemented robocop 6.0 formatting and deprecate old robotidy ([310bc54](https://github.com/robotcodedev/robotcode/commit/310bc544be8306fb85a329698763b562cd9d85aa))
18
20
  - **langserver:** Better support for indexed assignments ([6fad9b1](https://github.com/robotcodedev/robotcode/commit/6fad9b161b85b2412b6a9d5169e69b4ce37c43c3))
21
+ - **vscode:** Add language model tool to get the library and resource imports from a robot file ([e5631f0](https://github.com/robotcodedev/robotcode/commit/e5631f042e42810b35d8694649cb76819b7b5866))
22
+ - **vscode:** Add language model tools for retrieving library documentation and environment details ([a311e99](https://github.com/robotcodedev/robotcode/commit/a311e996cf95b2afaacc4b4402a4e2749b8d46bc))
23
+ - **vscode:** Add deprecation messages for robotframework-tidy in configuration ([37c5371](https://github.com/robotcodedev/robotcode/commit/37c5371919d10a7ea1f46c91f1f7707b63fa96ce))
24
+ - Basic support for Robot Framework 7.3 ([e6ffef7](https://github.com/robotcodedev/robotcode/commit/e6ffef7ded23ccab2bf3359891e5698f65a99ec4))
19
25
  - Show editor hint for Python/Robot Framework issues instead of throwing error ([4c2a43b](https://github.com/robotcodedev/robotcode/commit/4c2a43b8fd2ece7f905fc10695f2d5b9487dc52a))
20
26
 
21
27
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 1.3.0.dev2
3
+ Version: 1.3.0.dev4
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.3.0-dev.2
38
- Requires-Dist: robotcode-plugin==1.3.0-dev.2
39
- Requires-Dist: robotcode-robot==1.3.0-dev.2
37
+ Requires-Dist: robotcode-core==1.3.0-dev.4
38
+ Requires-Dist: robotcode-plugin==1.3.0-dev.4
39
+ Requires-Dist: robotcode-robot==1.3.0-dev.4
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.3.0-dev.2; extra == 'all'
45
- Requires-Dist: robotcode-debugger==1.3.0-dev.2; extra == 'all'
46
- Requires-Dist: robotcode-language-server==1.3.0-dev.2; extra == 'all'
47
- Requires-Dist: robotcode-repl-server==1.3.0-dev.2; extra == 'all'
48
- Requires-Dist: robotcode-repl==1.3.0-dev.2; extra == 'all'
49
- Requires-Dist: robotcode-runner==1.3.0-dev.2; extra == 'all'
44
+ Requires-Dist: robotcode-analyze==1.3.0-dev.4; extra == 'all'
45
+ Requires-Dist: robotcode-debugger==1.3.0-dev.4; extra == 'all'
46
+ Requires-Dist: robotcode-language-server==1.3.0-dev.4; extra == 'all'
47
+ Requires-Dist: robotcode-repl-server==1.3.0-dev.4; extra == 'all'
48
+ Requires-Dist: robotcode-repl==1.3.0-dev.4; extra == 'all'
49
+ Requires-Dist: robotcode-runner==1.3.0-dev.4; 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.3.0-dev.2; extra == 'analyze'
53
+ Requires-Dist: robotcode-analyze==1.3.0-dev.4; 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.3.0-dev.2; extra == 'debugger'
57
+ Requires-Dist: robotcode-debugger==1.3.0-dev.4; extra == 'debugger'
58
58
  Provides-Extra: languageserver
59
- Requires-Dist: robotcode-language-server==1.3.0-dev.2; extra == 'languageserver'
59
+ Requires-Dist: robotcode-language-server==1.3.0-dev.4; 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.3.0-dev.2; extra == 'repl'
63
+ Requires-Dist: robotcode-repl==1.3.0-dev.4; extra == 'repl'
64
64
  Provides-Extra: replserver
65
- Requires-Dist: robotcode-repl-server==1.3.0-dev.2; extra == 'replserver'
65
+ Requires-Dist: robotcode-repl-server==1.3.0-dev.4; 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.3.0-dev.2; extra == 'runner'
69
+ Requires-Dist: robotcode-runner==1.3.0-dev.4; extra == 'runner'
70
70
  Provides-Extra: tidy
71
71
  Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
72
72
  Provides-Extra: yaml
@@ -46,22 +46,12 @@ generate-tmlanguage = "python ./scripts/generate_tmlanguage.py"
46
46
  python = "3.13"
47
47
  extra-dependencies = ["robotframework==7.2rc1"]
48
48
 
49
- [envs.rfmaster313]
50
- python = "3.13"
51
- extra-dependencies = [
52
- "robotframework @ git+https://github.com/robotframework/robotframework.git",
53
- ]
54
-
55
49
  [envs.rfmaster]
56
50
  python = "3.12"
57
51
  extra-dependencies = [
58
52
  "robotframework @ git+https://github.com/robotframework/robotframework.git",
59
53
  ]
60
54
 
61
- [envs.pypy]
62
- python = "pypy3.10"
63
- extra-dependencies = ["robotframework==6.0"]
64
-
65
55
  [envs.rfdevel]
66
56
  python = "3.11"
67
57
  post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
@@ -75,31 +65,34 @@ python = "3.8"
75
65
 
76
66
  [[envs.devel.matrix]]
77
67
  python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
78
- rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
68
+ rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
79
69
 
80
70
  [envs.devel.overrides]
81
71
  matrix.rf.dependencies = [
82
- { value = "robotframework>=4.1.0, <5.0", if = [
72
+ { value = "robotframework~=4.1.0", if = [
83
73
  "rf41",
84
74
  ] },
85
- { value = "robotframework>=5.0.0, <6.0", if = [
75
+ { value = "robotframework~=5.0.0", if = [
86
76
  "rf50",
87
77
  ] },
88
- { value = "robotframework>6.0.0, <6.1", if = [
78
+ { value = "robotframework~=6.0.0", if = [
89
79
  "rf60",
90
80
  ] },
91
- { value = "robotframework>=6.1, <7.0", if = [
81
+ { value = "robotframework~=6.1.0", if = [
92
82
  "rf61",
93
83
  ] },
94
- { value = "robotframework>=7.0, <7.1", if = [
84
+ { value = "robotframework~=7.0.0", if = [
95
85
  "rf70",
96
86
  ] },
97
- { value = "robotframework>=7.1, <7.2", if = [
87
+ { value = "robotframework~=7.1.0", if = [
98
88
  "rf71",
99
89
  ] },
100
- { value = "robotframework>=7.2, <7.3", if = [
90
+ { value = "robotframework~=7.2.0", if = [
101
91
  "rf72",
102
92
  ] },
93
+ { value = "robotframework~=7.3.0", if = [
94
+ "rf73",
95
+ ] },
103
96
  ]
104
97
 
105
98
  [envs.hatch-test]
@@ -107,31 +100,34 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"]
107
100
  pre-install-commands = ["python ./scripts/install_packages.py"]
108
101
 
109
102
  [[envs.test.matrix]]
110
- rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"]
103
+ rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
111
104
 
112
105
  [envs.test.overrides]
113
106
  matrix.rf.dependencies = [
114
- { value = "robotframework>=4.1.0, <5.0", if = [
107
+ { value = "robotframework~=4.1.0", if = [
115
108
  "rf41",
116
109
  ] },
117
- { value = "robotframework>=5.0.0, <6.0", if = [
110
+ { value = "robotframework~=5.0.0", if = [
118
111
  "rf50",
119
112
  ] },
120
- { value = "robotframework>6.0.0, <6.1", if = [
113
+ { value = "robotframework~=6.0.0", if = [
121
114
  "rf60",
122
115
  ] },
123
- { value = "robotframework>=6.1, <7.0", if = [
116
+ { value = "robotframework~=6.1.0", if = [
124
117
  "rf61",
125
118
  ] },
126
- { value = "robotframework>=7.0, <7.1", if = [
119
+ { value = "robotframework~=7.0.0", if = [
127
120
  "rf70",
128
121
  ] },
129
- { value = "robotframework>=7.1, <7.2", if = [
122
+ { value = "robotframework~=7.1.0", if = [
130
123
  "rf71",
131
124
  ] },
132
- { value = "robotframework>=7.2, <7.3", if = [
125
+ { value = "robotframework~=7.2.0", if = [
133
126
  "rf72",
134
127
  ] },
128
+ { value = "robotframework~=7.3.0", if = [
129
+ "rf73",
130
+ ] },
135
131
  ]
136
132
 
137
133
  [envs.lint]
@@ -179,7 +175,7 @@ install-bundled-editable = "python ./scripts/install_bundled_editable.py"
179
175
 
180
176
 
181
177
  [envs.hatch-static-analysis]
182
- installer="uv"
178
+ installer = "uv"
183
179
  dependencies = ["ruff"]
184
180
 
185
181
  [envs.hatch-static-analysis.scripts]
@@ -51,9 +51,9 @@ classifiers = [
51
51
  ]
52
52
  requires-python = ">=3.8"
53
53
  dependencies = [
54
- "robotcode-core==1.3.0-dev.2",
55
- "robotcode-plugin==1.3.0-dev.2",
56
- "robotcode-robot==1.3.0-dev.2",
54
+ "robotcode-core==1.3.0-dev.4",
55
+ "robotcode-plugin==1.3.0-dev.4",
56
+ "robotcode-robot==1.3.0-dev.4",
57
57
  ]
58
58
  dynamic = ["version"]
59
59
 
@@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main"
71
71
 
72
72
 
73
73
  [project.optional-dependencies]
74
- debugger = ["robotcode-debugger==1.3.0-dev.2"]
75
- languageserver = ["robotcode-language-server==1.3.0-dev.2"]
76
- runner = ["robotcode-runner==1.3.0-dev.2"]
77
- analyze = ["robotcode-analyze==1.3.0-dev.2"]
74
+ debugger = ["robotcode-debugger==1.3.0-dev.4"]
75
+ languageserver = ["robotcode-language-server==1.3.0-dev.4"]
76
+ runner = ["robotcode-runner==1.3.0-dev.4"]
77
+ analyze = ["robotcode-analyze==1.3.0-dev.4"]
78
78
  yaml = ["PyYAML>=5.4"]
79
79
  lint = ["robotframework-robocop>=2.0.0"]
80
80
  tidy = ["robotframework-tidy>=2.0.0"]
81
81
  rest = ["docutils"]
82
- repl = ["robotcode-repl==1.3.0-dev.2"]
83
- replserver = ["robotcode-repl-server==1.3.0-dev.2"]
82
+ repl = ["robotcode-repl==1.3.0-dev.4"]
83
+ replserver = ["robotcode-repl-server==1.3.0-dev.4"]
84
84
  colored = ["rich"]
85
85
  all = [
86
- "robotcode-debugger==1.3.0-dev.2",
87
- "robotcode-language-server==1.3.0-dev.2",
88
- "robotcode-runner==1.3.0-dev.2",
89
- "robotcode-analyze==1.3.0-dev.2",
90
- "robotcode-repl==1.3.0-dev.2",
91
- "robotcode-repl-server==1.3.0-dev.2",
86
+ "robotcode-debugger==1.3.0-dev.4",
87
+ "robotcode-language-server==1.3.0-dev.4",
88
+ "robotcode-runner==1.3.0-dev.4",
89
+ "robotcode-analyze==1.3.0-dev.4",
90
+ "robotcode-repl==1.3.0-dev.4",
91
+ "robotcode-repl-server==1.3.0-dev.4",
92
92
  "PyYAML>=5.4",
93
93
  "robotframework-robocop>=2.0.0",
94
94
  "robotframework-tidy>=2.0.0",
@@ -0,0 +1 @@
1
+ __version__ = "1.3.0-dev.4"
@@ -1 +0,0 @@
1
- __version__ = "1.3.0-dev.2"
File without changes