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

Autofix: update-lang-python #1514

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion chunks/lang-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN sudo install-packages \
# Install PYENV
&& git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
# v2.4.16
&& git -C ~/.pyenv checkout 0f8b2b2b848ea080b0e01a707910c272ec4ce736 \
&& git -C ~/.pyenv checkout b3dad5887e1daef68a73360546082ad4eb4b82b8 \
&& pyenv install ${PYTHON_VERSION} \
&& pyenv global ${PYTHON_VERSION} \
&& for exec in global; do printf '%s\n' 'source "$HOME/.gp_pyenv.d/userbase.bash"' >> "$PYENV_ROOT/libexec/pyenv-$exec"; done \
Expand Down
4 changes: 2 additions & 2 deletions chunks/lang-python/chunk.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
variants:
- name: "3.13"
args:
PYTHON_VERSION: 3.13.1
PYTHON_VERSION: 3.13.2
- name: "3.12"
args:
PYTHON_VERSION: 3.12.8
PYTHON_VERSION: 3.12.9
- name: "3.11"
args:
PYTHON_VERSION: 3.11.11
Expand Down
2 changes: 1 addition & 1 deletion chunks/tool-yugabytedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
ENV PYENV_ROOT="$HOME/.pyenv"
RUN git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
# v2.4.16
&& git -C ~/.pyenv checkout 0f8b2b2b848ea080b0e01a707910c272ec4ce736 \
&& git -C ~/.pyenv checkout b3dad5887e1daef68a73360546082ad4eb4b82b8 \
&& pyenv install ${PYTHON_VERSION} \
&& pyenv global ${PYTHON_VERSION}

Expand Down
Loading