From a5c601e43e42612f1bc0b2a88dd7be5456447312 Mon Sep 17 00:00:00 2001 From: MarkoSagadin Date: Mon, 13 Jan 2025 13:50:55 +0100 Subject: [PATCH] fix: move codechecker requirements For some reason the "ModuleNotFoundError: No module named 'portalocker'" error started to appear when trying to run anything related to the codechecker. Although this package is part of the requirements-dev.txt file, it wasn't installed as a part of the east-tool install. Hopefully will this change fix that. --- scripts/requirements-dev.txt | 3 --- scripts/requirements.txt | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/requirements-dev.txt b/scripts/requirements-dev.txt index 740873c..8c01d62 100644 --- a/scripts/requirements-dev.txt +++ b/scripts/requirements-dev.txt @@ -5,6 +5,3 @@ build == 1.2.1 twine == 5.1.1 setuptools_scm == 8.1.0 tox == 4.18.0 -# Below two are needed for the codechecker to work inside the virtualvenv -portalocker -psutil diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 3954bfe..db4c51a 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -5,3 +5,6 @@ requests == 2.32.3 PyYAML >= 6.0.0 pykwalify == 1.8.0 ansi2txt == 0.2.0 +# Below two are needed for the codechecker to work inside the virtualvenv +portalocker +psutil