robotcode 1.8.0__tar.gz → 2.0.0__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.
@@ -2,6 +2,77 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
4
4
 
5
+ ## [2.0.0](https://github.com/robotcodedev/robotcode/compare/v1.9.0..v2.0.0) - 2025-10-10
6
+
7
+ ### Bug Fixes
8
+
9
+ - **debugger:** Handle breakpoints in `__init__.robot` files correctly ([34da5e7](https://github.com/robotcodedev/robotcode/commit/34da5e7db1955f7dde5a3a1c60f46cdc9fc6ea82))
10
+ - **langserver:** Support for Python 3.14 ([d7fe624](https://github.com/robotcodedev/robotcode/commit/d7fe624a79a09ecfbc4fa0ff61acb86a0d54b873))
11
+ - **langserver:** Update sort_text to use e.label for better clarity in import completion items ([39e1272](https://github.com/robotcodedev/robotcode/commit/39e12726f73004ef9083dd767ef8d1dbd6c9bd06))
12
+ - **robot:** Change logger level from critical to trace for LoadLibrary timeout ([52fc3b0](https://github.com/robotcodedev/robotcode/commit/52fc3b0c642447bd9cb424d16693307bab1c285f))
13
+ - **robot:** Change logger level from critical to trace for load_library_timeout ([c0e6898](https://github.com/robotcodedev/robotcode/commit/c0e68986287c79ae411a95286d1e31d41c8a0b36))
14
+ - Remove Python 3.8 support and update classifiers for Python 3.14 ([e642d5b](https://github.com/robotcodedev/robotcode/commit/e642d5bf4ea9cf9169ea9aadcc4945251a3063db))
15
+
16
+
17
+ ### Documentation
18
+
19
+ - Update Python version references to 3.12.6 and adjust testing matrix to 3.10-3.14 ([0d41933](https://github.com/robotcodedev/robotcode/commit/0d41933d15b516c7884557cbba157230ac96a70b))
20
+ - Disable math rendering in VitePress config and remove related dependencies ([5390600](https://github.com/robotcodedev/robotcode/commit/5390600fd211cbe8761a51f0864439c837605d50))
21
+
22
+
23
+ ### Features
24
+
25
+ - **langserver:** Add support for folding documentation settings ([2b627d7](https://github.com/robotcodedev/robotcode/commit/2b627d7e107a6290da8c6ac7f77e246b53553071))
26
+ - **langserver:** Remove Robotidy support ([c49bf40](https://github.com/robotcodedev/robotcode/commit/c49bf405900ca9226463f87719f6cc678d8ff8ae))
27
+ - **BREAKING**: remove Robotidy support
28
+
29
+ Use robotframework-robocop>=6.0 for formatting.
30
+
31
+ - Drop Python 3.8 and 3.9 support, require Python 3.10+ ([7c825de](https://github.com/robotcodedev/robotcode/commit/7c825de2fa1a956e375dc01f542c66b8975d687c))
32
+ - **BREAKING**: Python 3.8 and 3.9 are no longer supported. Minimum required version is now Python 3.10.
33
+
34
+
35
+ ## [1.9.0](https://github.com/robotcodedev/robotcode/compare/v1.8.0..v1.9.0) - 2025-09-12
36
+
37
+ ### Bug Fixes
38
+
39
+ - **robot:** Update class inheritance from BaseOptions to RobotBaseOptions for consistency ([1f18c52](https://github.com/robotcodedev/robotcode/commit/1f18c52600e9e467c835f9ebc0586b093e201def))
40
+ - **robot:** Improve timeout error messages for library and variable loading ([d698900](https://github.com/robotcodedev/robotcode/commit/d698900bad4e0df6df26c925905777b245414164))
41
+ - **robot:** Use --no* for disabled RF flags (e.g. --noexitonfailure) instead of short enable flags ([a6ffcf5](https://github.com/robotcodedev/robotcode/commit/a6ffcf56fdaa76efcb2f7ec7b6cfbad6d6ea2ddb))
42
+ - **tests:** Use raw string notation for regex in exception matchers ([d6ba124](https://github.com/robotcodedev/robotcode/commit/d6ba12461f9f29e680c094b1f9279206300fb322))
43
+
44
+
45
+ ### Documentation
46
+
47
+ - **config:** Add load-library-timeout option for library and variable loading to json schema ([d93a397](https://github.com/robotcodedev/robotcode/commit/d93a397fcb2018b46cca2b41c186e559709d09bd))
48
+ - Enhance README.md's and remove redundant license files across packages ([f21f4ea](https://github.com/robotcodedev/robotcode/commit/f21f4eafc43cf6bbea60e87f15025a6c4dcfed7c))
49
+ - Add comprehensive security policy and reporting guidelines ([a49027a](https://github.com/robotcodedev/robotcode/commit/a49027a2ba6c6eaa4d96a4cbb78f91cc8ded4d91))
50
+ - Update links and improve wording in documentation ([409c393](https://github.com/robotcodedev/robotcode/commit/409c393b716904a66b76885400f3953083eb8a7d))
51
+ - Reorganize support section in README.md for clarity ([22e56b7](https://github.com/robotcodedev/robotcode/commit/22e56b7a4e4e8ec47d62649ef83445b32aeb3742))
52
+
53
+
54
+ ### Features
55
+
56
+ - **analyze,robot:** Add configurable load_library_timeout with CLI flag and robot.toml support ([461212d](https://github.com/robotcodedev/robotcode/commit/461212d8c5ce8f24ce795b33ed0b6106bbba9497))
57
+
58
+ Add configurable library/variable load timeout. Sources (precedence):
59
+
60
+ analyze code: --load-library-timeout / --no-load-library-timeout
61
+ VS Code setting: robotcode.analysis.robot.loadLibraryTimeout
62
+ robot.toml / pyproject: [tool.robotcode-analyze] load-library-timeout
63
+ Env: ROBOTCODE_LOAD_LIBRARY_TIMEOUT
64
+ Default: 10
65
+ Replaces previous hard-coded timeout, adds validation (>0), clearer docs, and examples.
66
+
67
+ - **robot:** Define more detailed error message for library load timeout ([d5848ab](https://github.com/robotcodedev/robotcode/commit/d5848ab6d9b1285a6dc2465869b2bc274693603e))
68
+ - **robot:** Environment variable for load library timeout ([20c98c3](https://github.com/robotcodedev/robotcode/commit/20c98c3db7beaa9e67b8214f41976a70048305e6))
69
+
70
+
71
+ ### Refactor
72
+
73
+ - **tests:** Remove performance tests for argument processing ([d019a60](https://github.com/robotcodedev/robotcode/commit/d019a60fccb23e3d4a7d1269aae3379b97ce803b))
74
+
75
+
5
76
  ## [1.8.0](https://github.com/robotcodedev/robotcode/compare/v1.7.0..v1.8.0) - 2025-08-15
6
77
 
7
78
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robotcode
3
- Version: 1.8.0
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.8
37
- Requires-Dist: robotcode-core==1.8.0
38
- Requires-Dist: robotcode-plugin==1.8.0
39
- Requires-Dist: robotcode-robot==1.8.0
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==1.8.0; extra == 'all'
45
- Requires-Dist: robotcode-debugger==1.8.0; extra == 'all'
46
- Requires-Dist: robotcode-language-server==1.8.0; extra == 'all'
47
- Requires-Dist: robotcode-repl-server==1.8.0; extra == 'all'
48
- Requires-Dist: robotcode-repl==1.8.0; extra == 'all'
49
- Requires-Dist: robotcode-runner==1.8.0; extra == 'all'
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==1.8.0; extra == '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==1.8.0; extra == 'debugger'
55
+ Requires-Dist: robotcode-debugger==2.0.0; extra == 'debugger'
57
56
  Provides-Extra: languageserver
58
- Requires-Dist: robotcode-language-server==1.8.0; extra == 'languageserver'
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==1.8.0; extra == 'repl'
61
+ Requires-Dist: robotcode-repl==2.0.0; extra == 'repl'
63
62
  Provides-Extra: replserver
64
- Requires-Dist: robotcode-repl-server==1.8.0; extra == 'replserver'
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==1.8.0; extra == '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
- [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/master/LICENSE)
74
+ [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/main/LICENSE)
76
75
  [![Build Status](https://img.shields.io/github/actions/workflow/status/robotcodedev/robotcode/build-test-package-publish.yml?branch=main&style=flat&logo=github)](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
77
76
  [![VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/d-biehl.robotcode?style=flat&label=VS%20Marketplace&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
78
77
  [![Installs](https://img.shields.io/visual-studio-marketplace/i/d-biehl.robotcode?style=flat)](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
79
- [![JETBRAINS Marketplace](https://img.shields.io/jetbrains/plugin/v/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
78
+ [![JetBrains Marketplace](https://img.shields.io/jetbrains/plugin/v/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
80
79
  [![Downloads](https://img.shields.io/jetbrains/plugin/d/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
81
80
  [![PyPI - Version](https://img.shields.io/pypi/v/robotcode.svg?style=flat)](https://pypi.org/project/robotcode)
82
81
  [![Python Version](https://img.shields.io/pypi/pyversions/robotcode.svg?style=flat)](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**: Format your code using Robot Framework’s built-in tools like `robot.tidy` or [Robotidy](https://robotidy.readthedocs.io/).
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
- ### Deprecated Python and Robot Framework Versions
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
- Although Robot Framework still supports Python 3.8 and 3.9, RobotCode requires Python 3.10 or newer due to its use of more modern libraries and features. Many key tools in the ecosystem—such as robocop and the Browser library—have already dropped support for Python 3.8, which is no longer maintained. Python 3.9 will reach end-of-life on October 5, 2025.
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
- These capabilities enable cleaner, more efficient code and improved developer experience.
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 automatically installs the [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and the [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy) extension. Additional extensions may be required depending on your project needs.
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 automatically installs the [LSP4IJ](https://plugins.jetbrains.com/plugin/23257). Additional plugins may be required depending on your project needs.
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
- [Jetbrains](https://jb.gg/OpenSourceSupport)
253
+ [JetBrains](https://jb.gg/OpenSourceSupport)
@@ -1,10 +1,10 @@
1
1
  # RobotCode - The Ultimate Robot Framework Toolset
2
2
 
3
- [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/master/LICENSE)
3
+ [![License](https://img.shields.io/github/license/robotcodedev/robotcode?style=flat&logo=apache)](https://github.com/robotcodedev/robotcode/blob/main/LICENSE)
4
4
  [![Build Status](https://img.shields.io/github/actions/workflow/status/robotcodedev/robotcode/build-test-package-publish.yml?branch=main&style=flat&logo=github)](https://github.com/robotcodedev/robotcode/actions?query=workflow:build_test_package_publish)
5
5
  [![VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/d-biehl.robotcode?style=flat&label=VS%20Marketplace&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
6
6
  [![Installs](https://img.shields.io/visual-studio-marketplace/i/d-biehl.robotcode?style=flat)](https://marketplace.visualstudio.com/items?itemName=d-biehl.robotcode)
7
- [![JETBRAINS Marketplace](https://img.shields.io/jetbrains/plugin/v/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
7
+ [![JetBrains Marketplace](https://img.shields.io/jetbrains/plugin/v/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
8
8
  [![Downloads](https://img.shields.io/jetbrains/plugin/d/26216.svg)](https://plugins.jetbrains.com/plugin/26216)
9
9
  [![PyPI - Version](https://img.shields.io/pypi/v/robotcode.svg?style=flat)](https://pypi.org/project/robotcode)
10
10
  [![Python Version](https://img.shields.io/pypi/pyversions/robotcode.svg?style=flat)](https://pypi.org/project/robotcode)
@@ -46,36 +46,12 @@ With RobotCode, you can focus on building and testing your automation workflows
46
46
  - **Debugging**: Debug your Robot Framework tests with ease.
47
47
  - **Command Line Tools**: A wide array of tools to assist in setting up and managing Robot Framework environments.
48
48
  - **Code Analysis with Robocop**: Install [Robocop](https://robocop.readthedocs.io/) for additional code analysis.
49
- - **Code Formatting**: Format your code using Robot Framework’s built-in tools like `robot.tidy` or [Robotidy](https://robotidy.readthedocs.io/).
49
+ - **Code Formatting**: Use [Robocop's formatter](https://robocop.readthedocs.io/) for consistent code formatting.
50
50
  - **Multi-root Workspace Support**: Manage multiple Robot Framework projects with different Python environments simultaneously.
51
51
  - **Customizable Settings**: Configure the extension to fit your needs.
52
52
  - **RobotCode Repl and Notebooks**: Play with Robot Framework in a Jupyter Notebook-like environment.
53
53
  - **And More!**: Check out the [official documentation](https://robotcode.io) for more details.
54
54
 
55
-
56
- ## Support RobotCode
57
-
58
- RobotCode is developed and maintained by volunteers. Your support helps us continue improving and adding new features.
59
-
60
- **Become a Sponsor:**
61
- - [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
62
- - [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
63
-
64
- **Corporate Sponsorship:**
65
- - Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
66
- - Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
67
-
68
- **Other Ways to Support:**
69
- - Star the repository
70
- - 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)
71
- - Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
72
- - Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
73
- - Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
74
- - Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
75
- - Improve tests (edge cases, large suites, multi-root, versions)
76
- - Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
77
-
78
-
79
55
  ## Requirements
80
56
 
81
57
  ### Python and Robot Framework Versions
@@ -84,33 +60,23 @@ RobotCode is developed and maintained by volunteers. Your support helps us conti
84
60
 
85
61
  ### IDE Support
86
62
 
87
- - Visual Studio Code 1.99 or newer
63
+ - Visual Studio Code 1.99.0 or newer
88
64
  - PyCharm 2025.1 or newer or IntelliJ IDEA 2025.1 or newer
89
65
 
90
- ### Deprecated Python and Robot Framework Versions
91
-
92
- **⚠️ DEPRECATION WARNING:**
93
- 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.
66
+ ### Python and Robot Framework Version Requirements
94
67
 
95
68
  **Python Version Requirements:**
96
- Although Robot Framework still supports Python 3.8 and 3.9, RobotCode requires Python 3.10 or newer due to its use of more modern libraries and features. Many key tools in the ecosystem—such as robocop and the Browser library—have already dropped support for Python 3.8, which is no longer maintained. Python 3.9 will reach end-of-life on October 5, 2025.
97
-
98
- **Robot Framework Version Requirements:**
99
- 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.
100
-
101
- **Compatibility and Limitations:**
102
- RobotCode currently remains compatible with Python 3.8+ and Robot Framework 4.1+, but with important limitations:
103
- • New features may not be available for older versions.
104
- • Development and testing efforts are focused on newer versions.
105
-
106
- **Why Python 3.10:**
107
- 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:
69
+ 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:
108
70
  • Structural pattern matching
109
71
  • More informative error messages
110
72
  • Simplified type hints using the | operator
111
73
  • Performance enhancements
112
74
 
113
- These capabilities enable cleaner, more efficient code and improved developer experience.
75
+ **Robot Framework Version Requirements:**
76
+ 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.
77
+
78
+ **Why These Requirements:**
79
+ 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.
114
80
 
115
81
  **Recommendation:**
116
82
  To get the most out of RobotCode, we recommend using:
@@ -135,7 +101,7 @@ To get the most out of RobotCode, we recommend using:
135
101
  Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
136
102
 
137
103
  **Extensions:**
138
- RobotCode automatically installs the [Python](https://marketplace.visualstudio.com/items?itemName=ms-python.python) and the [Python Debugger](https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy) extension. Additional extensions may be required depending on your project needs.
104
+ 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.
139
105
 
140
106
 
141
107
  ### IntelliJ IDEA or PyCharm
@@ -164,7 +130,7 @@ RobotCode automatically installs the [Python](https://marketplace.visualstudio.c
164
130
  Visit the [Getting Started Guide](https://robotcode.io/02_get_started/) for detailed setup instructions and advanced features.
165
131
 
166
132
  **Plugins:**
167
- RobotCode automatically installs the [LSP4IJ](https://plugins.jetbrains.com/plugin/23257). Additional plugins may be required depending on your project needs.
133
+ 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.
168
134
 
169
135
 
170
136
  ## Documentation
@@ -179,6 +145,29 @@ Here are some additional resources to help you troubleshoot or learn more:
179
145
  - **[Support](https://robotcode.io/support/):** Learn how to get help and report issues.
180
146
 
181
147
 
148
+ ## Support RobotCode
149
+
150
+ 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.
151
+
152
+ **Become a Sponsor:**
153
+ - [GitHub Sponsors](https://github.com/sponsors/robotcodedev) - Monthly or one-time sponsorship
154
+ - [Open Collective](https://opencollective.com/robotcode) - One-time or recurring donations
155
+
156
+ **Corporate Sponsorship:**
157
+ - Direct & transparent: Open Collective (https://opencollective.com/robotcode) – invoices, public ledger
158
+ - Ecosystem support: Robot Framework Foundation membership (https://robotframework.org/foundation/) – indirectly benefits RobotCode
159
+
160
+ **Other Ways to Support:**
161
+ - Star the repository
162
+ - 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)
163
+ - Ask questions & help others ([Slack #robotcode](https://slack.robotframework.org/) / [Forum](https://forum.robotframework.org) / [Discussions](https://github.com/robotcodedev/robotcode/discussions))
164
+ - Report bugs in the [issue tracker](https://github.com/robotcodedev/robotcode/issues)
165
+ - Suggest enhancements or features (issues or [Discussions](https://github.com/robotcodedev/robotcode/discussions))
166
+ - Share usage patterns & integration ideas ([Discussions](https://github.com/robotcodedev/robotcode/discussions))
167
+ - Improve tests (edge cases, large suites, multi-root, versions)
168
+ - Contribute code ([good first issue](https://github.com/robotcodedev/robotcode/labels/good%20first%20issue) / [help wanted](https://github.com/robotcodedev/robotcode/labels/help%20wanted))
169
+
170
+
182
171
  ## License
183
172
 
184
173
  This project is licensed under the [Apache 2.0 License](https://spdx.org/licenses/Apache-2.0.html).
@@ -190,4 +179,4 @@ This project is licensed under the [Apache 2.0 License](https://spdx.org/license
190
179
  [Robot Framework Foundation](https://robotframework.org/foundation)
191
180
 
192
181
 
193
- [Jetbrains](https://jb.gg/OpenSourceSupport)
182
+ [JetBrains](https://jb.gg/OpenSourceSupport)
@@ -6,7 +6,6 @@ dev-mode-dirs = ["src"]
6
6
 
7
7
  [build.targets.wheel]
8
8
  only-include = ["src/robotcode"]
9
- sources = ["src"]
10
9
 
11
10
  [build.targets.sdist]
12
11
  only-include = ["src", "CHANGELOG.md"]
@@ -56,15 +55,11 @@ extra-dependencies = [
56
55
  python = "3.11"
57
56
  post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
58
57
 
59
- [envs.rfdevel38]
60
- python = "3.8"
61
- post-install-commands = ["pip install -U -e {root:uri}/../robotframework"]
62
-
63
58
  [envs.devel]
64
59
  python = "3.10"
65
60
 
66
61
  [[envs.devel.matrix]]
67
- python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
62
+ python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
68
63
  rf = ["rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"]
69
64
 
70
65
  [envs.devel.overrides]
@@ -30,12 +30,11 @@ classifiers = [
30
30
  "Development Status :: 5 - Production/Stable",
31
31
  "License :: OSI Approved :: Apache Software License",
32
32
  "Operating System :: OS Independent",
33
- "Programming Language :: Python :: 3.8",
34
- "Programming Language :: Python :: 3.9",
35
33
  "Programming Language :: Python :: 3.10",
36
34
  "Programming Language :: Python :: 3.11",
37
35
  "Programming Language :: Python :: 3.12",
38
36
  "Programming Language :: Python :: 3.13",
37
+ "Programming Language :: Python :: 3.14",
39
38
  "Programming Language :: Python :: Implementation :: CPython",
40
39
  "Topic :: Software Development :: Testing",
41
40
  "Topic :: Software Development :: Testing :: Acceptance",
@@ -49,11 +48,11 @@ classifiers = [
49
48
  "Framework :: Robot Framework",
50
49
  "Framework :: Robot Framework :: Tool",
51
50
  ]
52
- requires-python = ">=3.8"
51
+ requires-python = ">=3.10"
53
52
  dependencies = [
54
- "robotcode-core==1.8.0",
55
- "robotcode-plugin==1.8.0",
56
- "robotcode-robot==1.8.0",
53
+ "robotcode-core==2.0.0",
54
+ "robotcode-plugin==2.0.0",
55
+ "robotcode-robot==2.0.0",
57
56
  ]
58
57
  dynamic = ["version"]
59
58
 
@@ -71,23 +70,23 @@ robotcode = "robotcode.cli.__main__:main"
71
70
 
72
71
 
73
72
  [project.optional-dependencies]
74
- debugger = ["robotcode-debugger==1.8.0"]
75
- languageserver = ["robotcode-language-server==1.8.0"]
76
- runner = ["robotcode-runner==1.8.0"]
77
- analyze = ["robotcode-analyze==1.8.0"]
73
+ debugger = ["robotcode-debugger==2.0.0"]
74
+ languageserver = ["robotcode-language-server==2.0.0"]
75
+ runner = ["robotcode-runner==2.0.0"]
76
+ analyze = ["robotcode-analyze==2.0.0"]
78
77
  yaml = ["PyYAML>=5.4"]
79
78
  lint = ["robotframework-robocop>=2.0.0"]
80
79
  rest = ["docutils"]
81
- repl = ["robotcode-repl==1.8.0"]
82
- replserver = ["robotcode-repl-server==1.8.0"]
80
+ repl = ["robotcode-repl==2.0.0"]
81
+ replserver = ["robotcode-repl-server==2.0.0"]
83
82
  colored = ["rich"]
84
83
  all = [
85
- "robotcode-debugger==1.8.0",
86
- "robotcode-language-server==1.8.0",
87
- "robotcode-runner==1.8.0",
88
- "robotcode-analyze==1.8.0",
89
- "robotcode-repl==1.8.0",
90
- "robotcode-repl-server==1.8.0",
84
+ "robotcode-debugger==2.0.0",
85
+ "robotcode-language-server==2.0.0",
86
+ "robotcode-runner==2.0.0",
87
+ "robotcode-analyze==2.0.0",
88
+ "robotcode-repl==2.0.0",
89
+ "robotcode-repl-server==2.0.0",
91
90
  "PyYAML>=5.4",
92
91
  "robotframework-robocop>=2.0.0",
93
92
  "docutils",
@@ -262,7 +261,6 @@ module = [
262
261
  "robot.*",
263
262
  "robotremoteserver.*",
264
263
  "debugpy.*",
265
- "robotidy.*",
266
264
  "robocop.*",
267
265
  "pluggy",
268
266
  ]
@@ -291,7 +289,7 @@ no_implicit_reexport = false
291
289
  [tool.pyright]
292
290
  exclude = ["**/.hatch", "**/node_modules", "**/__pycache__", "bundled/libs", "intellij-client/build"]
293
291
  typeCheckingMode = "off"
294
- pythonVersion = "3.8"
292
+ pythonVersion = "3.10"
295
293
 
296
294
 
297
295
  [tool.commitizen]
@@ -0,0 +1 @@
1
+ __version__ = "2.0.0"
@@ -1 +0,0 @@
1
- __version__ = "1.8.0"
File without changes
File without changes