-
I'm currently working on adding pixi support for https://github.com/renovatebot/renovate, which is a dependency automation tool. There is a need to refresh user's lock file after it update Is there a lock file pixi version map so I can know which version of pixi should I install based on the version of lockfile? for example, if it's a I think this is related to #1061 , which pixi version a user should pick based on also : #2278 Current result: #3187 (reply in thread) It's not a issue if we don't have such thing, always use latest pixi and generate latest lock file is also a acceptable solution, (like uv). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
There is currently no map or automation to check the version, apart from pixi giving you the error if it doesn't fit. Ps. I'm excited about the renovate work! |
Beta Was this translation helpful? Give feedback.
-
you should be able to relatively easily construct this mapping yourself by repeatedly trying |
Beta Was this translation helpful? Give feedback.
you should be able to relatively easily construct this mapping yourself by repeatedly trying
pixi exec -s pixi=<custom-pixi-version> -- pixi list
and see where it starts failing.You can write a small shell script that gets all github releases using
pixi exec gh release list -R prefix-dev/pixi --json tagName