py-markdown package: update dependency version range (#11908)

The python dependency specifies that 2.7 or 2.8 are allowed when in
fact it should specify a version range (anything between 2.7 and 2.8,
inclusive).
This commit is contained in:
Glenn Johnson 2019-07-01 19:52:41 -05:00 committed by Peter Scheibel
parent 4d0926464c
commit b66c296562

View file

@ -33,6 +33,6 @@ class PyMarkdown(PythonPackage):
depends_on('python@2.7:2.8,3.2:3.4', when='@:2.6.7')
depends_on('python@2.7:2.8,3.2:3.6', when='@2.6.8:2.6.11')
depends_on('python@2.7,2.8,3.3.5:', when='@3.1.1:')
depends_on('python@2.7:2.8,3.3.5:', when='@3.1.1:')
depends_on('py-setuptools', type='build', when='@2.6.11:')