py-hatch-fancy-pypi-readme: depends_on when typo (#38103)

This commit is contained in:
Wouter Deconinck 2023-06-03 09:57:03 -05:00 committed by GitHub
parent ed76966a3a
commit fa23a0228f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,5 +16,5 @@ class PyHatchFancyPypiReadme(PythonPackage):
depends_on("python@3.7:", type=("build", "run"))
depends_on("py-hatchling", type=("build", "run"))
depends_on("py-tomli", when="python@:3.10", type=("build", "run"))
depends_on("py-typing-extensions", when="python@:3.7", type=("build", "run"))
depends_on("py-tomli", when="^python@:3.10", type=("build", "run"))
depends_on("py-typing-extensions", when="^python@:3.7", type=("build", "run"))