From 4c8aed0f869a0c7b11330563c02e7ea580e1d62a Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Fri, 27 Oct 2023 16:58:59 +0200 Subject: [PATCH] python requirements: add symforce since the configure step includes it Without this you get the following error message in the middle of the configure step status output: /usr/bin/python3.11: Error while finding module specification for 'symforce.symbolic' (ModuleNotFoundError: No module named 'symforce') It still configures succesfully. --- Tools/setup/requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Tools/setup/requirements.txt b/Tools/setup/requirements.txt index 27a62a208d..95dc507446 100644 --- a/Tools/setup/requirements.txt +++ b/Tools/setup/requirements.txt @@ -16,7 +16,6 @@ pandas>=0.21 pkgconfig psutil pygments -wheel>=0.31.1 pymavlink pyros-genmsg pyserial @@ -25,5 +24,7 @@ pyyaml requests setuptools>=39.2.0 six>=1.12.0 -toml>=0.9 +symforce>=0.9 sympy>=1.10.1 +toml>=0.9 +wheel>=0.31.1