mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-10 22:59:38 +08:00
5f844ecc92
Two independent failures in compile_windows.yml: MSVC: The `Install Python deps (MSVC)` step verified kconfiglib via `python -c "import menuconfig"`, but kconfiglib's menuconfig entry point imports the standard library `curses` module which is not shipped with the setup-python Windows interpreter. The job aborted with `ModuleNotFoundError: No module named '_curses'` before cmake ever ran. Probe with `import kconfiglib` instead, matching the matching change in cmake/kconfig.cmake. MinGW: `apt-get install python3-pyros-genmsg` returned exit 100 because pyros-genmsg is not packaged for Ubuntu noble. Drop it from the apt list and add it to the existing `pip install --user` line alongside empy 3.x. Signed-off-by: Nuno Marques <n.marques21@hotmail.com>