py-distributed: restrict py-contextvars dep to newer versions (#23841)

* py-distributed: restrict py-contextvars dep to newer versions

Change-Id: I8a6d55b840309aa6966ab310d42252f45b0ef9c7

* fixup dependency on py-contextvars

Change-Id: I56b729394af0f5a6fc283344d8af87990c97426b
This commit is contained in:
Andreas Baumbach 2021-06-11 17:15:55 +02:00 committed by GitHub
parent b4bf0c3476
commit 44a8e17549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ class PyDistributed(PythonPackage):
depends_on('py-cloudpickle@0.2.2:', type=('build', 'run'), when='@:2.16.0')
depends_on('py-cloudpickle@1.3.0:', type=('build', 'run'), when='@2.17.0:2.20.0')
depends_on('py-cloudpickle@1.5.0:', type=('build', 'run'), when='@2.21.0:')
depends_on('py-contextvars', type=('build', 'run'), when='^python@:3.6')
depends_on('py-contextvars', type=('build', 'run'), when='@2020: ^python@:3.6')
depends_on('py-msgpack', type=('build', 'run'), when='@:2.10.0')
depends_on('py-msgpack@0.6.0:', type=('build', 'run'), when='@2.11.0:')
depends_on('py-psutil@5.0:', type=('build', 'run'))