mirror of https://github.com/astral-sh/uv
Un-hide `--require-hashes` CLI argument (#3093)
## Summary An oversight from the release.
This commit is contained in:
parent
d6f9ea9d54
commit
5be47f698e
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue