Bump uv to make CI run with the new metatensor releases#1146
Merged
Conversation
Contributor
Author
|
@HaoZeke do you know why you left the step of setting up python in |
Collaborator
|
thanks a lot for fixing! i was afraid if it is something with release 😁 |
Contributor
Author
|
It's still not fixed, it doesn't fail in main because it installs torch==2.10, but CI still uses python 3.13.8 which will make your PR fail 😅 |
Contributor
Author
|
Now it is using python 3.13.13, this will solve the failure in your PR in principle 👍 |
Contributor
Author
|
cscs-ci run |
Contributor
Author
|
cscs-ci run |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Trying to fix recent CI failures, which are apparently related to pytorch/pytorch#165448
We had uv pinned, which installed python 3.13.8 when the python version was "3.13". This python version has problems with
torch >= 2.11. For some reason the CI in main is usingtorch==2.10at most and this is why we were not seeing any problem. However, the dependency bump in #1144 makes CI usetorch >= 2.11and therefore the CI was failing.This PR bumps both the
setup-uvaction anduvitself, which we leave unpinned (latest version is used) so that we don't get problems from olduvs in the future.📚 Documentation preview 📚: https://metatrain--1146.org.readthedocs.build/en/1146/