Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: python version up to 3.12 from 3.11 in Dockerfile #9654 #11182

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: pip, setuptools and wheels version up to compatibility with 3.12…
… in Dockerfile #9654
lkhagvadorj-amp committed Dec 31, 2024
commit 613c79e091d6f0507e39dcca0fed3ffbc7a2e70a
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ RUN apt-get update \
ENV PYTHONIOENCODING=utf-8
ENV LANG=C.UTF-8

RUN python -m pip install --upgrade "pip==24.0" "setuptools==69.2.0" "wheel==0.43.0" --no-cache-dir
RUN python -m pip install --upgrade "pip==24.3" "setuptools==75.6.0" "wheel==0.45.1" --no-cache-dir


FROM base as dbt-core