From d0ee9098cf6eb63bc8ecfe9c8e70214a607a32c0 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Thu, 9 Apr 2026 17:11:47 -0400 Subject: [PATCH] bump version (#4756) Signed-off-by: Alex Goodman --- .../python/testdata/image-multi-site-package/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syft/pkg/cataloger/python/testdata/image-multi-site-package/Dockerfile b/syft/pkg/cataloger/python/testdata/image-multi-site-package/Dockerfile index bcb8b6c1b..56b957ae2 100644 --- a/syft/pkg/cataloger/python/testdata/image-multi-site-package/Dockerfile +++ b/syft/pkg/cataloger/python/testdata/image-multi-site-package/Dockerfile @@ -25,7 +25,7 @@ RUN mkdir -p /app/project1 /app/project2 WORKDIR /app/project1 RUN python3.9 -m venv --system-site-packages venv RUN /app/project1/venv/bin/pip install pyyaml==5.4.1 beautifulsoup4==4.10.0 soupsieve==2.3.0 requests # note: use requests from global site packages, but use the rest from the virtual environment -RUN /app/project1/venv/bin/pip install inquirer==3.0.0 # note: should use dependencies from global site packages +RUN /app/project1/venv/bin/pip install readchar==4.2.1 inquirer==3.0.0 # note: should use dependencies from global site packages # set up the second project with a virtual environment using Python 3.8 WORKDIR /app/project2