Skip to content

Commit

Permalink
Un-hide --require-hashes CLI argument (#3093)
Browse files Browse the repository at this point in the history
## Summary

An oversight from the release.
  • Loading branch information
charliermarsh committed Apr 17, 2024
1 parent d6f9ea9 commit 5be47f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/uv/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ pub(crate) struct PipSyncArgs {
/// - Editable installs are not supported.
/// - Local dependencies are not supported, unless they point to a specific wheel (`.whl`) or
/// source archive (`.zip`, `.tar.gz`), as opposed to a directory.
#[arg(long, hide = true)]
#[arg(long)]
pub(crate) require_hashes: bool,

/// Attempt to use `keyring` for authentication for index urls
Expand Down Expand Up @@ -837,7 +837,7 @@ pub(crate) struct PipInstallArgs {
/// - Editable installs are not supported.
/// - Local dependencies are not supported, unless they point to a specific wheel (`.whl`) or
/// source archive (`.zip`, `.tar.gz`), as opposed to a directory.
#[arg(long, hide = true)]
#[arg(long)]
pub(crate) require_hashes: bool,

/// Attempt to use `keyring` for authentication for index urls
Expand Down

0 comments on commit 5be47f6

Please sign in to comment.