-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set minimum uv version in pyproject.toml (#6714)
Closes #6712 This sets the minimum uv version pyproject.toml, which is needed to have a consistent lockfile. When a dev has an outdated uv version, they'll get an error ``` error: Required version `>=0.5.20` does not match the running version `0.5.19` ``` Also pinned the `setup-uv` action to a specific version to prevent accidental regressions since that action is still undergoing heavy development. The new 5.2.0 also allows us to drop a VIRTUAL_ENV workaround. 🎉
- Loading branch information
1 parent
7387056
commit c88fc05
Showing
4 changed files
with
5 additions
and
8 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
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 |
---|---|---|
|
@@ -510,3 +510,6 @@ passenv = | |
AIIDA_TEST_WORKERS | ||
commands = molecule {posargs:test} | ||
""" | ||
|
||
[tool.uv] | ||
required-version = ">=0.5.20" |