How to extend dependencies in an environment? #153
-
Hello. I'm using Hatch for an application (rather than a library) and I have my dependencies listed in [envs.default]
dependencies = ["dep1", "dep2"]
[envs.experimental]
dependencies = ["dep1", "dep2", "new"] Is there a way to not repeat the stable dependencies? I tried inheritance (with I also did some experimenting with matrices and overrides but that means I gotta do I also tried using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey, thanks for opening this! I could add an |
Beta Was this translation helpful? Give feedback.
Hey, thanks for opening this!
I could add an
extra-dependencies
option to environments. What do you think?