diff --git a/uv/Dockerfile b/uv/Dockerfile index f63964665dd..dda16405ead 100644 --- a/uv/Dockerfile +++ b/uv/Dockerfile @@ -177,7 +177,7 @@ COPY --from=rust /usr/local/cargo $CARGO_HOME RUN mkdir -p ~/.cargo && printf "[net]\ngit-fetch-with-cli = true\n" >> ~/.cargo/config.toml # Install uv by copying from the official image -COPY --from=ghcr.io/astral-sh/uv:0.6.13 /uv /uvx /usr/local/bin/ +COPY --from=ghcr.io/astral-sh/uv:0.7.1 /uv /uvx /usr/local/bin/ COPY --chown=dependabot:dependabot cargo $DEPENDABOT_HOME/cargo COPY --chown=dependabot:dependabot common $DEPENDABOT_HOME/common diff --git a/uv/helpers/requirements.txt b/uv/helpers/requirements.txt index c7e4f73f941..6c46f5eaa08 100644 --- a/uv/helpers/requirements.txt +++ b/uv/helpers/requirements.txt @@ -7,7 +7,7 @@ plette==2.1.0 poetry==1.8.5 # TODO: Replace 3p package `tomli` with 3.11's new stdlib `tomllib` once we drop support for Python 3.10. tomli==2.0.1 -uv==0.6.13 +uv==0.7.1 # Some dependencies will only install if Cython is present Cython==3.0.10 diff --git a/uv/spec/dependabot/uv/file_parser_spec.rb b/uv/spec/dependabot/uv/file_parser_spec.rb index 065a00a5b37..b00be5fcb8e 100644 --- a/uv/spec/dependabot/uv/file_parser_spec.rb +++ b/uv/spec/dependabot/uv/file_parser_spec.rb @@ -689,7 +689,7 @@ expect(ecosystem.name).to eq("uv") expect(ecosystem.package_manager.name).to eq("uv") - expect(ecosystem.package_manager.version.to_s).to eq("0.6.13") + expect(ecosystem.package_manager.version.to_s).to eq("0.7.1") expect(ecosystem.language.name).to eq("python") end end