py-(re)commonmark: dependency types (#18743)

* py-(re)commonmark: dependency types

fix the python dependency types for python packages.

* py-(re)commonmark: add missing deps

* Remove unused `py-future`
This commit is contained in:
Axel Huebl 2020-09-29 09:15:50 -07:00 committed by GitHub
parent 609f361f93
commit 1e01518ef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -16,4 +16,5 @@ class PyCommonmark(PythonPackage):
version('0.9.0', sha256='867fc5db078ede373ab811e16b6789e9d033b15ccd7296f370ca52d1ee792ce0')
depends_on('py-future')
depends_on('py-setuptools', type='build')
depends_on('py-future', type=('build', 'run'))

View File

@ -19,6 +19,7 @@ class PyRecommonmark(PythonPackage):
version('0.6.0', sha256='29cd4faeb6c5268c633634f2d69aef9431e0f4d347f90659fd0aab20e541efeb')
depends_on('py-commonmark@0.8.1:')
depends_on('py-docutils@0.11:')
depends_on('py-sphinx@1.3.1:')
depends_on('py-setuptools', type='build')
depends_on('py-commonmark@0.8.1:', type=('build', 'run'))
depends_on('py-docutils@0.11:', type=('build', 'run'))
depends_on('py-sphinx@1.3.1:', type=('build', 'run'))