-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lock UV version to previous working version #20
base: main
Are you sure you want to change the base?
Conversation
What is the issue you are facing with 0.5.0 ? Can you share some insights on that ? |
Hi, I'm experiencing an issue when using the setup-python-amazon-linux action in my workflow. It worked fine yesterday, but without any changes to the workflow or my runners, it started failing today. The problem I'm having is when running the setup-python step ( setup-python-amazon-linux/action.yml Line 44 in 46d057b
I'm not sure if this is related to the issue @Goondrious is referring to in this PR, but I think it is likely related. |
@Goondrious Can you kindly look into the failing tests ? |
Confirming that it is the same issue as @d-olivas. The downgrade worked for our deploys, but I will look into the failing tests @kishaningithub ! |
Same error here when installing python 3.11. Here's the log output:
It seems that |
@kishaningithub following @Goondrious comment it looks like uv changed the installation target dir from $CARGO_HOME or ~/.cargo/bin to $XDG_BIN_HOME, $XDG_DATA_HOME/../bin, or ~/.local/bin. In theory the script should add the target dir in the path but something fails. I wouldn't investigate more because i would suggest to use the official action to avoid similar issue in the future. The official action is here https://github.com/astral-sh/setup-uv and can be used in that way
|
@Goondrious @d-olivas @Giannandrea @rpomoni Have released a new version v1.0.14 which i think should fix the above issues. Kindly check and let me know. |
@Goondrious Assuming the new version of this action is working for you, shall i close this PR? |
Short term fix to get some things deployed, but looks like new
uv
download link is pulling0.5.0
compared to yesterday's0.4.30
so I'm testing out if this downgrade works.Will hopefully just fix 0.5.0 after (maybe cuz Cargo home directory no longer used?)