From 607433185a319a80924bf0cef14d46d03a39a2fe Mon Sep 17 00:00:00 2001 From: Wenwen Date: Mon, 19 May 2025 13:28:52 +0800 Subject: [PATCH] Upgrade scancode to 32.3.3 and downgrade click to 8.1.8 --- eng/install-scancode.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eng/install-scancode.sh b/eng/install-scancode.sh index 39ad70be318c..7cb27c17bbf7 100755 --- a/eng/install-scancode.sh +++ b/eng/install-scancode.sh @@ -5,12 +5,13 @@ set -euo pipefail # Install instructions: https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-as-a-library-via-pip # See latest release at https://github.com/nexB/scancode-toolkit/releases -SCANCODE_VERSION="32.3.2" +SCANCODE_VERSION="32.3.3" pyEnvPath="/tmp/scancode-env" python3 -m venv $pyEnvPath source $pyEnvPath/bin/activate pip install scancode-toolkit==$SCANCODE_VERSION +pip install click==8.1.8 deactivate # Setup a script which executes scancode in the virtual environment