mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 10:58:28 +00:00
Hide --exclude-newer
from the command line (#1058)
This exists for our own test suite.
This commit is contained in:
parent
5db81c7caa
commit
cb04fa4496
1 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ struct PipCompileArgs {
|
|||
/// Timestamps are given either as RFC 3339 timestamps such as `2006-12-02T02:07:43Z` or as
|
||||
/// UTC dates in the same format such as `2006-12-02`. Dates are interpreted as including this
|
||||
/// day, i.e. until midnight UTC that day.
|
||||
#[arg(long, value_parser = date_or_datetime)]
|
||||
#[arg(long, value_parser = date_or_datetime, hide = true)]
|
||||
exclude_newer: Option<DateTime<Utc>>,
|
||||
}
|
||||
|
||||
|
@ -476,7 +476,7 @@ struct PipInstallArgs {
|
|||
/// Timestamps are given either as RFC 3339 timestamps such as `2006-12-02T02:07:43Z` or as
|
||||
/// UTC dates in the same format such as `2006-12-02`. Dates are interpreted as including this
|
||||
/// day, i.e. until midnight UTC that day.
|
||||
#[arg(long, value_parser = date_or_datetime)]
|
||||
#[arg(long, value_parser = date_or_datetime, hide = true)]
|
||||
exclude_newer: Option<DateTime<Utc>>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue