Skip to content

Commit 9cdcce9

Browse files
committed
analyzer: Upgrade python-inspector to 0.9.2
For the release notes see [1]. This version fixes a deserialization issue so upgrade the minimum required version as well [2]. [1]: https://github.com/nexB/python-inspector/blob/main/CHANGELOG.rst#v092 [2]: aboutcode-org/python-inspector#94 Signed-off-by: Martin Nonnenmacher <[email protected]>
1 parent f893e58 commit 9cdcce9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ RUN pyenv global ${PYTHON_VERSION}
136136
COPY docker/python.sh /etc/profile.d
137137

138138
ARG CONAN_VERSION=1.52.0
139-
ARG PYTHON_INSPECTOR_VERSION=0.9.0
139+
ARG PYTHON_INSPECTOR_VERSION=0.9.2
140140
ARG PYTHON_PIPENV_VERSION=2022.9.24
141141
ARG PYTHON_POETRY_VERSION=1.1.13
142142
ARG PIPTOOL_VERSION=22.2.2

analyzer/src/main/kotlin/managers/utils/PythonInspector.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ internal object PythonInspector : CommandLineTool, Logging {
5858

5959
override fun transformVersion(output: String) = output.removePrefix("Python-inspector version: ")
6060

61-
override fun getVersionRequirement(): Requirement = Requirement.buildIvy("[0.9.0,)")
61+
override fun getVersionRequirement(): Requirement = Requirement.buildIvy("[0.9.2,)")
6262

6363
fun run(
6464
workingDir: File,

docker/legacy/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ARG CRT_FILES=""
2727
ARG SCANCODE_VERSION="30.1.0"
2828

2929
# Set this to the Python Inspector version to use.
30-
ARG PYTHON_INSPECTOR_VERSION="0.9.0"
30+
ARG PYTHON_INSPECTOR_VERSION="0.9.2"
3131

3232
FROM eclipse-temurin:11-jdk-jammy AS build
3333

0 commit comments

Comments
 (0)