Does Hatchling support recursive optional dependencies? #839
Answered
by
ofek
MicaelJarniac
asked this question in
Q&A
-
[project]
name = "my-pkg"
[project.optional-dependencies]
tests = ["pytest"]
docs = ["sphinx"]
dev = [
"my-pkg[tests,docs]",
"pdbpp",
] Where I'm using I've read about this here: https://hynek.me/articles/python-recursive-optional-dependencies There's this question about the topic as well: https://stackoverflow.com/q/75490231/11521074 |
Beta Was this translation helpful? Give feedback.
Answered by
ofek
Apr 28, 2023
Replies: 1 comment
-
This has nothing to do with Hatchling, as long as you use a recent version of |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MicaelJarniac
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This has nothing to do with Hatchling, as long as you use a recent version of
pip
then this will work pypa/pip#11296