Skip to content

merge 1.35.1 to master#1653

Merged
tastelikefeet merged 11 commits into
masterfrom
feat/merge_1.35.1
Mar 19, 2026
Merged

merge 1.35.1 to master#1653
tastelikefeet merged 11 commits into
masterfrom
feat/merge_1.35.1

Conversation

@tastelikefeet
Copy link
Copy Markdown
Collaborator

No description provided.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request integrates updates from version 1.35.1 into the master branch, primarily focusing on refreshing the Docker build environment. It involves bumping several key dependency versions, updating the base images used for both CPU and GPU builds, and adjusting the package installation process to include new utilities while streamlining existing ones. These changes ensure the build system remains current with recent library releases and Python versions.

Highlights

  • Dependency Version Updates: The default lmdeploy_version was updated from 0.10.1 to 0.11.0, and the default python_version was updated from 3.10.14 to 3.11.11.
  • Docker Base Image Updates: The CPU and GPU base image tags were updated from 1.33.0-test to 1.34.0-test in build_image.py.
  • New Package Installations: New Python packages including icecream, soundfile, pybind11, and py-spy were added to the Docker build process.
  • Streamlined Dependency Management: Direct installations of autoawq, lmdeploy, and auto-gptq were removed from install.sh, likely centralizing their version management within build_image.py.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@tastelikefeet tastelikefeet merged commit ce6a902 into master Mar 19, 2026
2 of 3 checks passed
@tastelikefeet tastelikefeet deleted the feat/merge_1.35.1 branch March 19, 2026 07:01
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The pull request updates dependency versions for lmdeploy and base Docker images, and changes the default Python version to 3.11.11. It also adds several Python packages (icecream, soundfile, pybind11, py-spy) to the Dockerfile generation. Review feedback highlights a potential issue with the removal of auto-gptq installation in install.sh while its version is still defined, suggesting either re-adding it or removing the unused argument. Additionally, it points out code duplication in build_image.py regarding the new package installations, recommending refactoring for better maintainability.

Comment thread docker/install.sh
MAX_JOBS=16 pip install --no-cache-dir flash_attn==$flashattn_version --no-build-isolation

pip install --no-cache-dir triton auto-gptq==$autogptq_version -U && pip cache purge
pip install --no-cache-dir triton -U && pip cache purge
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The installation of auto-gptq has been removed from this pip install command. Similar to lmdeploy, autogptq_version is still defined in build_image.py and passed as an argument to this script. If auto-gptq is a required dependency, its removal here will lead to missing dependencies. Please re-add auto-gptq to this installation command if it's still needed, or remove the autogptq_version argument from build_image.py if it's no longer a dependency.

Suggested change
pip install --no-cache-dir triton -U && pip cache purge
pip install --no-cache-dir triton auto-gptq==$autogptq_version -U && pip cache purge

Comment thread docker/build_image.py
Comment on lines +340 to +342
extra_content += """
RUN pip install --no-cache-dir -U icecream soundfile pybind11 py-spy
"""
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This block adds several Python packages (icecream, soundfile, pybind11, py-spy) to the Dockerfile. This exact block of code is also present in the LatestGPUImageBuilder class (lines 406-408 in the full file). Consider refactoring this common installation step into a shared method or by modifying docker/Dockerfile.extra_install to avoid code duplication and improve maintainability.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants