From 7b8b4652693a87233c9aea313959a9cede3df0f4 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Tue, 15 Aug 2023 19:05:26 -0400 Subject: tests docs: update python3 venv packages - Package update performed by 1. updating pip, pip-tools, setuptools 2. 'make test-refresh-deps' on ubuntu 22.04 3. fixing 'make test' and 'make docs' issues on ubuntu 22.04 4. 'make test-refresh-deps' on ubuntu 20.04 - Add dependency for 'make test-refresh-deps' to insure python venv is set up. - Update of python formatter, black, caused reformating of 41 python code files. Type: make Change-Id: I7cafdf4b5189065ac57cb6b254937f6e0897a924 Signed-off-by: Dave Wallace --- test/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 4d00898bfe2..939b0e14813 100644 --- a/test/Makefile +++ b/test/Makefile @@ -74,10 +74,10 @@ V=0 endif PYTHON_VERSION=$(shell $(PYTHON_INTERP) -c 'import sys; print(sys.version_info.major)') -PIP_VERSION=22.0.4 +PIP_VERSION=23.2.1 # Keep in sync with requirements.txt -PIP_TOOLS_VERSION=6.6.0 -PIP_SETUPTOOLS_VERSION=62.1.0 +PIP_TOOLS_VERSION=7.3.0 +PIP_SETUPTOOLS_VERSION=68.1.0 PYTHON_DEPENDS=requirements-$(PYTHON_VERSION).txt SCAPY_SOURCE=$(shell find $(VENV_PATH)/lib/python* -name site-packages) BUILD_COV_DIR=$(BR)/test-coverage @@ -131,7 +131,7 @@ $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE) @touch $@ .PHONY: refresh-deps -refresh-deps: clean-deps $(PYTHON_DEPENDS) +refresh-deps: clean-deps $(PIP_INSTALL_DONE) $(PYTHON_DEPENDS) .PHONY: clean-deps clean-deps: -- cgit 1.2.3-korg