py-pykwalify: fix conflict directive (missing '^') (#19753)

This commit is contained in:
Andrew W Elble 2020-11-05 11:30:32 -05:00 committed by GitHub
parent fa7ba11d1a
commit 6dc25e7dbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,6 @@ class PyPykwalify(PythonPackage):
depends_on('py-python-dateutil@2.4.2:', type=('build', 'run'))
depends_on('py-pyyaml@3.11:', type=('build', 'run'), when='@1.6.1')
conflicts('py-ruamel@0.16.0:', when='@1.6.1')
conflicts('python@2.8.0:3.2.99', when='@1.6.1')
conflicts('python@2.8.0:3.4.99', when='@1.7.0:')
conflicts('^py-ruamel@0.16.0:', when='@1.6.1')
conflicts('^python@2.8.0:3.2.99', when='@1.6.1')
conflicts('^python@2.8.0:3.4.99', when='@1.7.0:')