-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow version specifiers to be used in Python version requests
- Loading branch information
Showing
3 changed files
with
113 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2072,14 +2072,22 @@ fn lock_requires_python() -> Result<()> { | |
|
||
// Install from the lockfile. | ||
uv_snapshot!(context.filters(), context.sync(), @r###" | ||
success: false | ||
exit_code: 2 | ||
success: true | ||
exit_code: 0 | ||
----- stdout ----- | ||
----- stderr ----- | ||
warning: `uv sync` is experimental and may change without warning. | ||
Removing virtual environment at: [VENV]/ | ||
error: Requested Python executable `>=3.12` not found in PATH | ||
Using Python 3.12.3 interpreter at: /opt/homebrew/opt/[email protected]/bin/python3.12 | ||
Creating virtualenv at: [VENV]/ | ||
Downloaded 5 packages in [TIME] | ||
Installed 5 packages in [TIME] | ||
+ attrs==23.2.0 | ||
+ cattrs==23.2.3 | ||
+ lsprotocol==2023.0.1 | ||
+ project==0.1.0 (from file://private/var/folders/6p/k5sd5z7j31b31pq4lhn0l8d80000gn/T/.tmp2LoTc2) | ||
+ pygls==1.3.0 | ||
"###); | ||
|
||
Ok(()) | ||
|