robotcode 1.8.0__py3-none-any.whl → 2.0.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.
- {robotcode-1.8.0.dist-info → robotcode-2.0.0.dist-info}/METADATA +55 -67
- robotcode-2.0.0.dist-info/RECORD +12 -0
- src/robotcode/cli/__version__.py +1 -0
- robotcode/cli/__version__.py +0 -1
- robotcode-1.8.0.dist-info/RECORD +0 -12
- {robotcode-1.8.0.dist-info → robotcode-2.0.0.dist-info}/WHEEL +0 -0
- {robotcode-1.8.0.dist-info → robotcode-2.0.0.dist-info}/entry_points.txt +0 -0
- {robotcode-1.8.0.dist-info → robotcode-2.0.0.dist-info}/licenses/LICENSE.txt +0 -0
- {robotcode → src/robotcode}/cli/__init__.py +0 -0
- {robotcode → src/robotcode}/cli/__main__.py +0 -0
- {robotcode → src/robotcode}/cli/commands/__init__.py +0 -0
- {robotcode → src/robotcode}/cli/commands/config.py +0 -0
- {robotcode → src/robotcode}/cli/commands/profiles.py +0 -0
- {robotcode → src/robotcode}/cli/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode
|
3
|
-
Version:
|
3
|
+
Version: 2.0.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
|
@@ -18,12 +18,11 @@ Classifier: Framework :: Robot Framework :: Tool
|
|
18
18
|
Classifier: Intended Audience :: Developers
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
20
20
|
Classifier: Operating System :: OS Independent
|
21
|
-
Classifier: Programming Language :: Python :: 3.8
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
23
21
|
Classifier: Programming Language :: Python :: 3.10
|
24
22
|
Classifier: Programming Language :: Python :: 3.11
|
25
23
|
Classifier: Programming Language :: Python :: 3.12
|
26
24
|
Classifier: Programming Language :: Python :: 3.13
|
25
|
+
Classifier: Programming Language :: Python :: 3.14
|
27
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
28
27
|
Classifier: Topic :: Software Development :: Debuggers
|
29
28
|
Classifier: Topic :: Software Development :: Quality Assurance
|
@@ -33,50 +32,50 @@ Classifier: Topic :: Software Development :: Testing :: BDD
|
|
33
32
|
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
34
33
|
Classifier: Topic :: Utilities
|
35
34
|
Classifier: Typing :: Typed
|
36
|
-
Requires-Python: >=3.
|
37
|
-
Requires-Dist: robotcode-core==
|
38
|
-
Requires-Dist: robotcode-plugin==
|
39
|
-
Requires-Dist: robotcode-robot==
|
35
|
+
Requires-Python: >=3.10
|
36
|
+
Requires-Dist: robotcode-core==2.0.0
|
37
|
+
Requires-Dist: robotcode-plugin==2.0.0
|
38
|
+
Requires-Dist: robotcode-robot==2.0.0
|
40
39
|
Provides-Extra: all
|
41
40
|
Requires-Dist: docutils; extra == 'all'
|
42
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
43
42
|
Requires-Dist: rich; extra == 'all'
|
44
|
-
Requires-Dist: robotcode-analyze==
|
45
|
-
Requires-Dist: robotcode-debugger==
|
46
|
-
Requires-Dist: robotcode-language-server==
|
47
|
-
Requires-Dist: robotcode-repl-server==
|
48
|
-
Requires-Dist: robotcode-repl==
|
49
|
-
Requires-Dist: robotcode-runner==
|
43
|
+
Requires-Dist: robotcode-analyze==2.0.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==2.0.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==2.0.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-repl-server==2.0.0; extra == 'all'
|
47
|
+
Requires-Dist: robotcode-repl==2.0.0; extra == 'all'
|
48
|
+
Requires-Dist: robotcode-runner==2.0.0; extra == 'all'
|
50
49
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
51
50
|
Provides-Extra: analyze
|
52
|
-
Requires-Dist: robotcode-analyze==
|
51
|
+
Requires-Dist: robotcode-analyze==2.0.0; extra == 'analyze'
|
53
52
|
Provides-Extra: colored
|
54
53
|
Requires-Dist: rich; extra == 'colored'
|
55
54
|
Provides-Extra: debugger
|
56
|
-
Requires-Dist: robotcode-debugger==
|
55
|
+
Requires-Dist: robotcode-debugger==2.0.0; extra == 'debugger'
|
57
56
|
Provides-Extra: languageserver
|
58
|
-
Requires-Dist: robotcode-language-server==
|
57
|
+
Requires-Dist: robotcode-language-server==2.0.0; extra == 'languageserver'
|
59
58
|
Provides-Extra: lint
|
60
59
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
61
60
|
Provides-Extra: repl
|
62
|
-
Requires-Dist: robotcode-repl==
|
61
|
+
Requires-Dist: robotcode-repl==2.0.0; extra == 'repl'
|
63
62
|
Provides-Extra: replserver
|
64
|
-
Requires-Dist: robotcode-repl-server==
|
63
|
+
Requires-Dist: robotcode-repl-server==2.0.0; extra == 'replserver'
|
65
64
|
Provides-Extra: rest
|
66
65
|
Requires-Dist: docutils; extra == 'rest'
|
67
66
|
Provides-Extra: runner
|
68
|
-
Requires-Dist: robotcode-runner==
|
67
|
+
Requires-Dist: robotcode-runner==2.0.0; extra == 'runner'
|
69
68
|
Provides-Extra: yaml
|
70
69
|
Requires-Dist: pyyaml>=5.4; extra == 'yaml'
|
71
70
|
Description-Content-Type: text/markdown
|
72
71
|
|
73
72
|
# RobotCode - The Ultimate Robot Framework Toolset
|
74
73
|
|
75
|
-
[](https://github.com/robotcodedev/robotcode/blob/
|
74
|
+
[](https://github.com/robotcodedev/robotcode/blob/main/LICENSE)
|
76
75
|
[](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
|
77
76
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
78
77
|
[](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
|
79
|
-
[](https://plugins.jetbrains.com/plugin/26216)
|
80
79
|
[](https://plugins.jetbrains.com/plugin/26216)
|
81
80
|
[](https://pypi.org/project/robotcode)
|
82
81
|
[](https://pypi.org/project/robotcode)
|
@@ -118,36 +117,12 @@ With RobotCode, you can focus on building and testing your automation workflows
|
|
118
117
|
- **Debugging**: Debug your Robot Framework tests with ease.
|
119
118
|
- **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
|
120
119
|
- **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
|
121
|
-
- **Code Formatting**:
|
120
|
+
- **Code Formatting**: Use [Robocop's formatter](https://robocop.readthedocs.io/) for consistent code formatting.
|
122
121
|
- **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
|
123
122
|
- **Customizable Settings**: Configure the extension to fit your needs.
|
124
123
|
- **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
|
125
124
|
- **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
|
126
125
|
|
127
|
-
|
128
|
-
## Support RobotCode
|
129
|
-
|
130
|
-
RobotCode is developed and maintained by volunteers. Your support helps us continue improving and adding new features.
|
131
|
-
|
132
|
-
**Become a Sponsor:**
|
133
|
-
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
134
|
-
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
135
|
-
|
136
|
-
**Corporate Sponsorship:**
|
137
|
-
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
138
|
-
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
139
|
-
|
140
|
-
**Other Ways to Support:**
|
141
|
-
- Star the repository
|
142
|
-
- Leave a review on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode) and [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/26216)
|
143
|
-
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
144
|
-
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
145
|
-
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
146
|
-
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
147
|
-
- Improve tests (edge cases, large suites, multi-root, versions)
|
148
|
-
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
149
|
-
|
150
|
-
|
151
126
|
## Requirements
|
152
127
|
|
153
128
|
### Python and Robot Framework Versions
|
@@ -156,33 +131,23 @@ RobotCode is developed and maintained by volunteers. Your support helps us conti
|
|
156
131
|
|
157
132
|
### IDE Support
|
158
133
|
|
159
|
-
- Visual Studio Code 1.99 or newer
|
134
|
+
- Visual Studio Code 1.99.0 or newer
|
160
135
|
- PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
|
161
136
|
|
162
|
-
###
|
163
|
-
|
164
|
-
**⚠️ DEPRECATION WARNING:**
|
165
|
-
Support for Python 3.8, 3.9, and Robot Framework 4.1 is deprecated and will be removed in a future release. To ensure compatibility and benefit from ongoing improvements, please upgrade to Python 3.10 or later and Robot Framework 5.0 or later.
|
137
|
+
### Python and Robot Framework Version Requirements
|
166
138
|
|
167
139
|
**Python Version Requirements:**
|
168
|
-
|
169
|
-
|
170
|
-
**Robot Framework Version Requirements:**
|
171
|
-
Robot Framework 4.1 is outdated. Given the regular release cadence of Robot Framework—typically two major versions per year—maintaining support for older versions introduces significant overhead. That effort is better spent on supporting current and upcoming features.
|
172
|
-
|
173
|
-
**Compatibility and Limitations:**
|
174
|
-
RobotCode currently remains compatible with Python 3.8+ and Robot Framework 4.1+, but with important limitations:
|
175
|
-
• New features may not be available for older versions.
|
176
|
-
• Development and testing efforts are focused on newer versions.
|
177
|
-
|
178
|
-
**Why Python 3.10:**
|
179
|
-
After Python 3.9 reaches end-of-life, RobotCode will start using Python 3.10+ features that are not backward-compatible. Python 3.10 introduces several important improvements, including:
|
140
|
+
RobotCode requires Python 3.10 or newer. Python 3.8 and 3.9 are no longer supported as they have reached or are approaching end-of-life status. Python 3.10 provides several important improvements that enable cleaner, more efficient code:
|
180
141
|
• Structural pattern matching
|
181
142
|
• More informative error messages
|
182
143
|
• Simplified type hints using the | operator
|
183
144
|
• Performance enhancements
|
184
145
|
|
185
|
-
|
146
|
+
**Robot Framework Version Requirements:**
|
147
|
+
RobotCode supports Robot Framework 5.0 or later. Older versions like Robot Framework 4.1 are no longer supported due to their outdated nature and the regular release cadence of Robot Framework.
|
148
|
+
|
149
|
+
**Why These Requirements:**
|
150
|
+
Many key tools in the Robot Framework ecosystem—such as robocop and the Browser library—have already moved to similar requirements. This alignment ensures compatibility and allows RobotCode to leverage modern Python features for improved performance and developer experience.
|
186
151
|
|
187
152
|
**Recommendation:**
|
188
153
|
To get the most out of RobotCode, we recommend using:
|
@@ -207,7 +172,7 @@ To get the most out of RobotCode, we recommend using:
|
|
207
172
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
208
173
|
|
209
174
|
**Extensions:**
|
210
|
-
RobotCode
|
175
|
+
RobotCode declares dependencies on the [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy) extensions so VS Code installs them when required. Additional extensions may be needed depending on your project.
|
211
176
|
|
212
177
|
|
213
178
|
### IntelliJ IDEA or PyCharm
|
@@ -236,7 +201,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
|
|
236
201
|
Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
|
237
202
|
|
238
203
|
**Plugins:**
|
239
|
-
RobotCode
|
204
|
+
RobotCode declares a dependency on [LSP4IJ](https://plugins.jetbrains.com/plugin/23257) so your IDE installs it automatically. Additional plugins may be required depending on your project needs.
|
240
205
|
|
241
206
|
|
242
207
|
## Documentation
|
@@ -251,6 +216,29 @@ Here are some additional resources to help you troubleshoot or learn more:
|
|
251
216
|
- **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
|
252
217
|
|
253
218
|
|
219
|
+
## Support RobotCode
|
220
|
+
|
221
|
+
RobotCode is driven by the passion of its lead developer and the support of a growing community. To continue adding new features, improving stability, and expanding the ecosystem, your involvement is essential. Whether you contribute code, offer feedback, or provide financial support, you help shape the future of RobotCode.
|
222
|
+
|
223
|
+
**Become a Sponsor:**
|
224
|
+
- [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
|
225
|
+
- [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
|
226
|
+
|
227
|
+
**Corporate Sponsorship:**
|
228
|
+
- Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
|
229
|
+
- Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
|
230
|
+
|
231
|
+
**Other Ways to Support:**
|
232
|
+
- Star the repository
|
233
|
+
- Leave a review on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode) and [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/26216)
|
234
|
+
- Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
235
|
+
- Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
|
236
|
+
- Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
237
|
+
- Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
|
238
|
+
- Improve tests (edge cases, large suites, multi-root, versions)
|
239
|
+
- Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
|
240
|
+
|
241
|
+
|
254
242
|
## License
|
255
243
|
|
256
244
|
This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
|
@@ -262,4 +250,4 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
|
|
262
250
|
[Robot Framework Foundation](https://robotframework.org/foundation)
|
263
251
|
|
264
252
|
|
265
|
-
[
|
253
|
+
[JetBrains](https://jb.gg/OpenSourceSupport)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
src/robotcode/cli/__init__.py,sha256=dQ0Hhc3BJCf07zyHINEfAYROccgsnP-jcRUYzdTmD9g,9456
|
2
|
+
src/robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
|
3
|
+
src/robotcode/cli/__version__.py,sha256=_7OlQdbVkK4jad0CLdpI0grT-zEAb-qgFmH5mFzDXiA,22
|
4
|
+
src/robotcode/cli/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
|
5
|
+
src/robotcode/cli/commands/__init__.py,sha256=XJHRt_YwMO2Ni2EfL2aj4jkJXMVG6NGFTpzvSVgIRnQ,92
|
6
|
+
src/robotcode/cli/commands/config.py,sha256=0Jmf7HDIo7IIaOMU9M_bYi7PdHAfcae6x3SW93NA3EA,10481
|
7
|
+
src/robotcode/cli/commands/profiles.py,sha256=5H9lvSVCMggWXf0IH54QtgDgqupEEvpcUrEsTZvZsNM,6127
|
8
|
+
robotcode-2.0.0.dist-info/METADATA,sha256=TDMoRaL0Wr0_UhD-LYIZgkfoXBV68xIw03efIMNFUSE,14706
|
9
|
+
robotcode-2.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
robotcode-2.0.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
|
11
|
+
robotcode-2.0.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
12
|
+
robotcode-2.0.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "2.0.0"
|
robotcode/cli/__version__.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.8.0"
|
robotcode-1.8.0.dist-info/RECORD
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
robotcode/cli/__init__.py,sha256=dQ0Hhc3BJCf07zyHINEfAYROccgsnP-jcRUYzdTmD9g,9456
|
2
|
-
robotcode/cli/__main__.py,sha256=hX3nwROMTnsYGT1KS0rXUYrslu9sFzctYdAh66Rcckw,153
|
3
|
-
robotcode/cli/__version__.py,sha256=Oc_xF94AMAHKZkZlB5rBt1iO0TXWFalg65MP4T2qt-A,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.8.0.dist-info/METADATA,sha256=JwN9pzB6jc7CmbNsfH-1fsPLC4hgikquqX9YubeunXc,15261
|
9
|
-
robotcode-1.8.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
-
robotcode-1.8.0.dist-info/entry_points.txt,sha256=Pb4DKVVdJb5PboVl48njwk3DkKQHBJOL1A8KkpemqA8,58
|
11
|
-
robotcode-1.8.0.dist-info/licenses/LICENSE.txt,sha256=B05uMshqTA74s-0ltyHKI6yoPfJ3zYgQbvcXfDVGFf8,10280
|
12
|
-
robotcode-1.8.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|