pixi add error - regex constraints are not supported #2709
-
Hello there backgroundI try to migrate one of my work repos to use pixi (our usual workflow is based on conda environments, no actual package management is applied). The problemI tried migrating directly by running
I also created a fresh project with
Important: I do manage to create a fresh conda environment with the exact same package as a single dependency!
I googled for "regex constraints are not supported" and found nothing. I can't tell whether it's a problem with pixi or maybe the package solver (or something else), if you have any lead on this it would be great. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You have ran into a genuine issue that I think we should support! This is an issue with our version spec parsing (in rattler). We always assume a an optional operator followed by a version or a version followed by .*. However your case is neither, but it is something we should support. |
Beta Was this translation helpful? Give feedback.
-
So this issue is fixed on rattler's side, see conda/rattler#1006 (thanks!) When can we expect to see this change in pixi? |
Beta Was this translation helpful? Give feedback.
You have ran into a genuine issue that I think we should support! This is an issue with our version spec parsing (in rattler). We always assume a an optional operator followed by a version or a version followed by .*. However your case is neither, but it is something we should support.