Replies: 1 comment 1 reply
-
|
Hey! I see the pain - this is pretty verbose. The usual pattern in pixi is to put common deps in [dependencies] and use features only for the parts that change. You could also treat each py3x feature as its own environment and skip the wrapper envs unless you need extra combinations. Something like: [feature.py39.dependencies] [feature.py310.dependencies] [environments] That cuts out the middlemen. If you really need the test* combos, you might be stuck with the repetition. Pixi prioritizes explicit envs over DRY trickery. Hope that helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For testing, I would like to have multi environments, but I don't see a DRY way to do this:
Am I missing something? Is there a simpler approach?
Beta Was this translation helpful? Give feedback.
All reactions