Skip to content

Commit b73750b

Browse files
committed
build: fix optional dependencies
1 parent edc4ee5 commit b73750b

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

hatch.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ dependencies = [
2222
"semantic-version",
2323
"robotremoteserver",
2424
"apischema",
25-
"tomli-w",
26-
"rich",
2725
]
2826
features = ["all"]
2927
pre-install-commands = ["python ./scripts/install_packages.py"]

pyproject.toml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,24 +67,25 @@ robotcode = "robotcode.cli:robotcode"
6767

6868
[project.optional-dependencies]
6969
debugger = ["robotcode-debugger"]
70-
language-server = ["robotcode-language-server"]
70+
languageserver = ["robotcode-language-server"]
7171
runner = ["robotcode-runner"]
7272
analyze = ["robotcode-analyze"]
73-
yaml = ["PyYAML>=5.4", "types-PyYAML>=5.4"]
73+
yaml = ["PyYAML>=5.4"]
7474
lint = ["robotframework-robocop>=2.0.0"]
7575
tidy = ["robotframework-tidy>=2.0.0"]
7676
rest = ["docutils"]
7777
colored = ["rich"]
78+
tomlw = ["tomli-w"]
7879
all = [
79-
"runner",
80-
"debugger",
81-
"language-server",
82-
"analyze",
83-
"yaml",
84-
"lint",
85-
"tidy",
86-
"colored",
87-
"rest",
80+
"robotcode-debugger",
81+
"robotcode-language-server",
82+
"robotcode-runner",
83+
"robotcode-analyze",
84+
"PyYAML>=5.4",
85+
"robotframework-robocop>=2.0.0",
86+
"docutils",
87+
"rich",
88+
"tomli-w",
8889
]
8990

9091

0 commit comments

Comments
 (0)