Skip to content
Snippets Groups Projects
Commit 835b8f24 authored by Adam J. Stewart's avatar Adam J. Stewart
Browse files

py-sphinx requires py-setuptools during runtime

parent d7873b53
Branches
Tags
No related merge requests found
...@@ -36,7 +36,10 @@ class PySphinx(Package): ...@@ -36,7 +36,10 @@ class PySphinx(Package):
extends('python', ignore='bin/(pybabel|pygmentize)') extends('python', ignore='bin/(pybabel|pygmentize)')
depends_on('py-setuptools', type='build') # Most Python packages only require py-setuptools as a build dependency.
# However, py-sphinx requires py-setuptools during runtime as well.
depends_on('py-setuptools', type=nolink)
depends_on('py-six@1.4:', type=nolink) depends_on('py-six@1.4:', type=nolink)
depends_on('py-jinja2@2.3:', type=nolink) depends_on('py-jinja2@2.3:', type=nolink)
depends_on('py-pygments@2.0:', type=nolink) depends_on('py-pygments@2.0:', type=nolink)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment