You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The support for "modern" package specifiers in pep508_rs is very underdeveloped. We want to replace that with a custom implementation. For now, we can forgo URL dependencies since those are not supported by pixi. I would like to see an implementation where if a string is specified it must be a version specifier and not a full requirement. If you want to add more complex behavior to your dependency you should create a toml table.
The support for "modern" package specifiers in pep508_rs is very underdeveloped. We want to replace that with a custom implementation. For now, we can forgo URL dependencies since those are not supported by pixi. I would like to see an implementation where if a string is specified it must be a version specifier and not a full requirement. If you want to add more complex behavior to your dependency you should create a toml table.
E.g:
Poetry also supports additional operators that we could translate like
^
and~
, lets not do that for now. We can add that later.Also, errors must be contextual:
should result in an error message saying that "b$r" is not a valid extra name. Currently, we produce these types of errors:
The text was updated successfully, but these errors were encountered: