From 21eb7cc5bd96f33d906821778ba0cd8d4bd6d762 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Wed, 8 Jan 2025 12:45:08 -0700 Subject: [PATCH] github: Remove dependency upon python3-distutils The package python3-distutils has been deprecated, and we no longer depend upon it. Don't install it during Github Actions automated tests. Signed-off-by: Tom Hromatka Signed-off-by: Paul Moore --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 94f6bbb1..d51400d5 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -29,7 +29,7 @@ runs: - run: sudo apt-get install -y build-essential valgrind clang-tools lcov gperf astyle codespell shell: bash - run: | - sudo apt-get install -y python3 python3-distutils python3-setuptools python3-pip + sudo apt-get install -y python3 python3-setuptools python3-pip python3 -m pip install --upgrade pip python3 -m pip install cython # Add cython to the path