fixed ^python in py-rich, py-dvc (#22264)

This commit is contained in:
Bryan Herman 2021-03-12 17:53:31 -05:00 committed by GitHub
parent f213cf8349
commit 839af2bd70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class PyDvc(PythonPackage):
depends_on('py-networkx@2.1:2.4', when='@:1.11.6', type=('build', 'run'))
depends_on('py-networkx@2.1:', when='@1.11.7:', type=('build', 'run'))
depends_on('py-pydot@1.2.4:', type=('build', 'run'))
depends_on('py-dataclasses@0.7', when='python@:3.6.999', type=('build', 'run'))
depends_on('py-dataclasses@0.7', when='^python@:3.6.999', type=('build', 'run'))
depends_on('py-flatten-dict@0.3.0:0.99', type=('build', 'run'))
depends_on('py-tabulate@0.8.7:', type=('build', 'run'))
depends_on('py-pygtrie@2.3.2', type=('build', 'run'))

View File

@ -29,7 +29,7 @@ class PyRich(PythonPackage):
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-typing-extensions@3.7.4:3.99', type=('build', 'run'))
depends_on('py-dataclasses@0.7:0.8', when='python@:3.6', type=('build', 'run'))
depends_on('py-dataclasses@0.7:0.8', when='^python@:3.6', type=('build', 'run'))
depends_on('py-pygments@2.6:2.99', type=('build', 'run'))
depends_on('py-commonmark@0.9.0:0.9.999', type=('build', 'run'))
depends_on('py-colorama@0.4.0:0.4.999', type=('build', 'run'))