We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd37f8 commit 734485aCopy full SHA for 734485a
eng/install-scancode.sh
@@ -2,12 +2,15 @@
2
3
set -euo pipefail
4
5
-# https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-as-a-library-via-pip
+# Install instructions: https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-as-a-library-via-pip
6
+
7
+# See latest release at https://github.com/nexB/scancode-toolkit/releases
8
+SCANCODE_VERSION="32.0.8"
9
10
pyEnvPath="/tmp/scancode-env"
11
python3 -m venv $pyEnvPath
12
source $pyEnvPath/bin/activate
-pip install scancode-toolkit
13
+pip install scancode-toolkit==$SCANCODE_VERSION
14
deactivate
15
16
# Setup a script which executes scancode in the virtual environment
0 commit comments