fixed when python dep in ftfy dep for py benedict (#22261)

This commit is contained in:
Bryan Herman 2021-03-12 12:28:13 -05:00 committed by GitHub
parent 19b163e49d
commit a2e9a9076f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,8 +17,8 @@ class PyPythonBenedict(PythonPackage):
depends_on('python@2.7:2.8,3.4:', type=('build', 'run')) depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('py-ftfy@4.4.3', when='python@:3.3.999', type=('build', 'run')) depends_on('py-ftfy@4.4.3', when='^python@:3.3.999', type=('build', 'run'))
depends_on('py-ftfy', when='python@3.4:', type=('build', 'run')) depends_on('py-ftfy', when='^python@3.4:', type=('build', 'run'))
depends_on('py-mailchecker', type=('build', 'run')) depends_on('py-mailchecker', type=('build', 'run'))
depends_on('py-phonenumbers', type=('build', 'run')) depends_on('py-phonenumbers', type=('build', 'run'))
depends_on('py-python-dateutil', type=('build', 'run')) depends_on('py-python-dateutil', type=('build', 'run'))