joint pip & conda packages #2905
-
Is it possible to combine pip and conda dependencies in the new build mode https://pixi.sh/latest/build/backends/ of pixi? |
Beta Was this translation helpful? Give feedback.
Answered by
baszalmstra
Jan 15, 2025
Replies: 1 comment 3 replies
-
I might be missing some detail in your question. But maybe the python tutorial could help you: https://pixi.sh/latest/build/python/ The idea is that the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Our long term vision is that pixi build backends can (optionally) output multiple artifact types. We currently focus on conda packages but we plan on adding support for other types down the line.
When a package contains both conda and pypi dependencies we’ll have to do a reverse mapping from pypi packages to conda and vice versa. We already have a pretty solid base for going from conda to pypi (used by pixi already) and we think we can also do the inverse based on the same data that we already have.
With current pixi-build we already have preliminary support for building pyproject projects (as well as feedstocks and cmake based projects) but without any mapping. We will extend this more i…