Skip to content

Commit 6bf2a6d

Browse files
committed
fix: don't pull html-to-markdown into the 'all' extra
Since version 2.0 html-to-markdown ships as a Rust extension with prebuilt wheels only for a limited set of platforms (manylinux x86_64/aarch64, macOS, win_amd64). On other targets such as 32-bit Raspberry Pi OS (armv7l) or Alpine/musllinux, pip falls back to a source build that needs a Rust toolchain and fails, which broke 'pip install robotcode[all]'. html-to-markdown only improves HTML log conversion in the 'results' command and has a built-in stdlib fallback, so it is now opt-in via 'pip install robotcode-runner[html]'. Fixes #613
1 parent 2bcce4e commit 6bf2a6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ replserver = ["robotcode-repl-server==2.6.0"]
6464
all = [
6565
"robotcode-debugger==2.6.0",
6666
"robotcode-language-server==2.6.0",
67-
"robotcode-runner[html]==2.6.0",
67+
"robotcode-runner==2.6.0",
6868
"robotcode-analyze==2.6.0",
6969
"robotcode-repl==2.6.0",
7070
"robotcode-repl-server==2.6.0",

0 commit comments

Comments
 (0)