mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Correctly document default value of fork-strategy
setting (#9931)
<!-- Thank you for contributing to uv! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary The `fork-strategy` default value was overlooked in #9887. --------- Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com>
This commit is contained in:
parent
5a5429a5f0
commit
2e23abb1f0
2 changed files with 4 additions and 4 deletions
|
@ -497,7 +497,7 @@ pub struct ResolverInstallerOptions {
|
|||
/// preferring older versions that are compatible with a wider range of supported Python
|
||||
/// versions or platforms.
|
||||
#[option(
|
||||
default = "\"fewest\"",
|
||||
default = "\"requires-python\"",
|
||||
value_type = "str",
|
||||
example = r#"
|
||||
fork-strategy = "fewest"
|
||||
|
@ -1099,7 +1099,7 @@ pub struct PipOptions {
|
|||
/// preferring older versions that are compatible with a wider range of supported Python
|
||||
/// versions or platforms.
|
||||
#[option(
|
||||
default = "\"fewest\"",
|
||||
default = "\"requires-python\"",
|
||||
value_type = "str",
|
||||
example = r#"
|
||||
fork-strategy = "fewest"
|
||||
|
|
|
@ -777,7 +777,7 @@ Under `fewest`, uv will minimize the number of selected versions for each packag
|
|||
preferring older versions that are compatible with a wider range of supported Python
|
||||
versions or platforms.
|
||||
|
||||
**Default value**: `"fewest"`
|
||||
**Default value**: `"requires-python"`
|
||||
|
||||
**Possible values**:
|
||||
|
||||
|
@ -2158,7 +2158,7 @@ Under `fewest`, uv will minimize the number of selected versions for each packag
|
|||
preferring older versions that are compatible with a wider range of supported Python
|
||||
versions or platforms.
|
||||
|
||||
**Default value**: `"fewest"`
|
||||
**Default value**: `"requires-python"`
|
||||
|
||||
**Possible values**:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue