robotcode 0.81.0__tar.gz → 0.82.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.
- {robotcode-0.81.0 → robotcode-0.82.0}/CHANGELOG.md +12 -1
- {robotcode-0.81.0 → robotcode-0.82.0}/PKG-INFO +12 -12
- {robotcode-0.81.0 → robotcode-0.82.0}/hatch.toml +11 -2
- {robotcode-0.81.0 → robotcode-0.82.0}/pyproject.toml +11 -11
- robotcode-0.82.0/src/robotcode/cli/__version__.py +1 -0
- robotcode-0.81.0/src/robotcode/cli/__version__.py +0 -1
- {robotcode-0.81.0 → robotcode-0.82.0}/.gitignore +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/LICENSE.txt +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/README.md +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/__init__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/__main__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/commands/__init__.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/commands/config.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/commands/profiles.py +0 -0
- {robotcode-0.81.0 → robotcode-0.82.0}/src/robotcode/cli/py.typed +0 -0
@@ -2,6 +2,17 @@
|
|
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
|
+
## [0.82.0](https://github.com/robotcodedev/robotcode/compare/v0.81.0..v0.82.0) - 2024-05-05
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
- **vscode:** Detection of invalid robot environment now shows a quickpick instead an error message ([95a7630](https://github.com/robotcodedev/robotcode/commit/95a7630e4c8820d8521935847a65eb71bf215097))
|
10
|
+
|
11
|
+
In the case RobotCode will initalize the LanguageServer and detect that environment is not valid, means wrong python version, no robotframework installed, instead an error message pops up a quickpick pops up, where you can do different things, like select a differnt interpreter, create a new venv, ignore this for the moment.
|
12
|
+
The advantage of this way is, that this also works with extensions like Pyhton Manger and so on
|
13
|
+
|
14
|
+
|
15
|
+
|
5
16
|
## [0.81.0](https://github.com/robotcodedev/robotcode/compare/v0.80.0..v0.81.0) - 2024-05-03
|
6
17
|
|
7
18
|
### Bug Fixes
|
@@ -1182,6 +1193,7 @@ All notable changes to this project will be documented in this file. See [conven
|
|
1182
1193
|
|
1183
1194
|
### Features
|
1184
1195
|
|
1196
|
+
- Support for new `--parseinclude` option in robot config ([dfd88d8](https://github.com/robotcodedev/robotcode/commit/dfd88d87ed08d1065a26eb6f29c1eec6a03272f6))
|
1185
1197
|
- Support for new RF 6.1 `--parse-include` option for discovering and executing tests ([607cf8d](https://github.com/robotcodedev/robotcode/commit/607cf8db2777b5d11db89e830131261d60581b0f))
|
1186
1198
|
- Enable importing and completion of `.rest`, `.rsrc` and `.json` resource extensions (not parsing) ([3df22dd](https://github.com/robotcodedev/robotcode/commit/3df22ddcb703983b56d0756fef29d06cb2960009))
|
1187
1199
|
- Support for importing `.json` files in RF 6.1 ([0f84c4e](https://github.com/robotcodedev/robotcode/commit/0f84c4ec1d9a897aa25ab37fff702f8feea50cf4))
|
@@ -1203,7 +1215,6 @@ All notable changes to this project will be documented in this file. See [conven
|
|
1203
1215
|
|
1204
1216
|
### Features
|
1205
1217
|
|
1206
|
-
- Support for new `--parseinclude` option in robot config ([dfd88d8](https://github.com/robotcodedev/robotcode/commit/dfd88d87ed08d1065a26eb6f29c1eec6a03272f6))
|
1207
1218
|
- Support for new `--parseinclude` option in robot config ([6b84986](https://github.com/robotcodedev/robotcode/commit/6b84986e7109c36b5df81c0ff56f84665a855c6a))
|
1208
1219
|
|
1209
1220
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: robotcode
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.82.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
|
@@ -33,33 +33,33 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
33
33
|
Classifier: Topic :: Utilities
|
34
34
|
Classifier: Typing :: Typed
|
35
35
|
Requires-Python: >=3.8
|
36
|
-
Requires-Dist: robotcode-core==0.
|
37
|
-
Requires-Dist: robotcode-plugin==0.
|
38
|
-
Requires-Dist: robotcode-robot==0.
|
36
|
+
Requires-Dist: robotcode-core==0.82.0
|
37
|
+
Requires-Dist: robotcode-plugin==0.82.0
|
38
|
+
Requires-Dist: robotcode-robot==0.82.0
|
39
39
|
Provides-Extra: all
|
40
40
|
Requires-Dist: docutils; extra == 'all'
|
41
41
|
Requires-Dist: pyyaml>=5.4; extra == 'all'
|
42
42
|
Requires-Dist: rich; extra == 'all'
|
43
|
-
Requires-Dist: robotcode-analyze==0.
|
44
|
-
Requires-Dist: robotcode-debugger==0.
|
45
|
-
Requires-Dist: robotcode-language-server==0.
|
46
|
-
Requires-Dist: robotcode-runner==0.
|
43
|
+
Requires-Dist: robotcode-analyze==0.82.0; extra == 'all'
|
44
|
+
Requires-Dist: robotcode-debugger==0.82.0; extra == 'all'
|
45
|
+
Requires-Dist: robotcode-language-server==0.82.0; extra == 'all'
|
46
|
+
Requires-Dist: robotcode-runner==0.82.0; extra == 'all'
|
47
47
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'all'
|
48
48
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'all'
|
49
49
|
Provides-Extra: analyze
|
50
|
-
Requires-Dist: robotcode-analyze==0.
|
50
|
+
Requires-Dist: robotcode-analyze==0.82.0; extra == 'analyze'
|
51
51
|
Provides-Extra: colored
|
52
52
|
Requires-Dist: rich; extra == 'colored'
|
53
53
|
Provides-Extra: debugger
|
54
|
-
Requires-Dist: robotcode-debugger==0.
|
54
|
+
Requires-Dist: robotcode-debugger==0.82.0; extra == 'debugger'
|
55
55
|
Provides-Extra: languageserver
|
56
|
-
Requires-Dist: robotcode-language-server==0.
|
56
|
+
Requires-Dist: robotcode-language-server==0.82.0; extra == 'languageserver'
|
57
57
|
Provides-Extra: lint
|
58
58
|
Requires-Dist: robotframework-robocop>=2.0.0; extra == 'lint'
|
59
59
|
Provides-Extra: rest
|
60
60
|
Requires-Dist: docutils; extra == 'rest'
|
61
61
|
Provides-Extra: runner
|
62
|
-
Requires-Dist: robotcode-runner==0.
|
62
|
+
Requires-Dist: robotcode-runner==0.82.0; extra == 'runner'
|
63
63
|
Provides-Extra: tidy
|
64
64
|
Requires-Dist: robotframework-tidy>=2.0.0; extra == 'tidy'
|
65
65
|
Provides-Extra: yaml
|
@@ -87,6 +87,15 @@ matrix.rf.dependencies = [
|
|
87
87
|
] },
|
88
88
|
]
|
89
89
|
|
90
|
+
[envs.hatch-test]
|
91
|
+
dependencies = [
|
92
|
+
"pytest",
|
93
|
+
"pytest-html",
|
94
|
+
"pytest_asyncio>=0.23",
|
95
|
+
"pyyaml"
|
96
|
+
]
|
97
|
+
pre-install-commands = ["python ./scripts/install_packages.py"]
|
98
|
+
|
90
99
|
[[envs.test.matrix]]
|
91
100
|
rf = ["rf41", "rf50", "rf60", "rf61", "rf70"]
|
92
101
|
|
@@ -164,12 +173,12 @@ deploy = ["python scripts/deploy_docs.py"]
|
|
164
173
|
[envs.build]
|
165
174
|
skip-install = true
|
166
175
|
detached = true
|
167
|
-
python = "
|
176
|
+
python = "3.8"
|
168
177
|
dependencies = [
|
169
178
|
"GitPython",
|
170
179
|
"semantic-version",
|
171
180
|
"commitizen",
|
172
|
-
"git-cliff
|
181
|
+
"git-cliff"
|
173
182
|
]
|
174
183
|
|
175
184
|
[envs.build.scripts]
|
@@ -50,9 +50,9 @@ classifiers = [
|
|
50
50
|
]
|
51
51
|
requires-python = ">=3.8"
|
52
52
|
dependencies = [
|
53
|
-
"robotcode-core==0.
|
54
|
-
"robotcode-plugin==0.
|
55
|
-
"robotcode-robot==0.
|
53
|
+
"robotcode-core==0.82.0",
|
54
|
+
"robotcode-plugin==0.82.0",
|
55
|
+
"robotcode-robot==0.82.0",
|
56
56
|
]
|
57
57
|
dynamic = ["version"]
|
58
58
|
|
@@ -70,20 +70,20 @@ robotcode = "robotcode.cli.__main__:main"
|
|
70
70
|
|
71
71
|
|
72
72
|
[project.optional-dependencies]
|
73
|
-
debugger = ["robotcode-debugger==0.
|
74
|
-
languageserver = ["robotcode-language-server==0.
|
75
|
-
runner = ["robotcode-runner==0.
|
76
|
-
analyze = ["robotcode-analyze==0.
|
73
|
+
debugger = ["robotcode-debugger==0.82.0"]
|
74
|
+
languageserver = ["robotcode-language-server==0.82.0"]
|
75
|
+
runner = ["robotcode-runner==0.82.0"]
|
76
|
+
analyze = ["robotcode-analyze==0.82.0"]
|
77
77
|
yaml = ["PyYAML>=5.4"]
|
78
78
|
lint = ["robotframework-robocop>=2.0.0"]
|
79
79
|
tidy = ["robotframework-tidy>=2.0.0"]
|
80
80
|
rest = ["docutils"]
|
81
81
|
colored = ["rich"]
|
82
82
|
all = [
|
83
|
-
"robotcode-debugger==0.
|
84
|
-
"robotcode-language-server==0.
|
85
|
-
"robotcode-runner==0.
|
86
|
-
"robotcode-analyze==0.
|
83
|
+
"robotcode-debugger==0.82.0",
|
84
|
+
"robotcode-language-server==0.82.0",
|
85
|
+
"robotcode-runner==0.82.0",
|
86
|
+
"robotcode-analyze==0.82.0",
|
87
87
|
"PyYAML>=5.4",
|
88
88
|
"robotframework-robocop>=2.0.0",
|
89
89
|
"robotframework-tidy>=2.0.0",
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.82.0"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.81.0"
|
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
|