Skip to content
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 uv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion uv/helpers/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion uv/spec/dependabot/uv/file_parser_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading