py-pyside: restrict version of dependency on v1.2.2 (#26396)

Restrict @:1.2.2 to older sphinx versions to not fail the build
This commit is contained in:
bernhardkaindl 2021-10-01 16:04:36 +02:00 committed by GitHub
parent 627c7007ef
commit da7666a967
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,8 @@ class PyPyside(PythonPackage):
depends_on('cmake', type='build')
depends_on('py-setuptools', type='build')
depends_on('py-sphinx', type=('build', 'run'))
depends_on('py-sphinx', type=('build', 'run'))
depends_on('py-sphinx@:3.5.0', type=('build', 'run'), when='@:1.2.2')
depends_on('qt@4.5:4.9')
depends_on('libxml2@2.6.32:')
depends_on('libxslt@1.1.19:')