py-azureml-dataset-runtime: add new version (#21920)

This commit is contained in:
Adam J. Stewart 2021-02-24 14:13:11 -06:00 committed by GitHub
parent ae09be9cdc
commit a470064a6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ class PyAzuremlDatasetRuntime(Package):
homepage = "https://docs.microsoft.com/en-us/azure/machine-learning/service/" homepage = "https://docs.microsoft.com/en-us/azure/machine-learning/service/"
url = "https://pypi.io/packages/py3/a/azureml-dataset-runtime/azureml_dataset_runtime-1.11.0.post1-py3-none-any.whl" url = "https://pypi.io/packages/py3/a/azureml-dataset-runtime/azureml_dataset_runtime-1.11.0.post1-py3-none-any.whl"
version('1.23.0', sha256='96ca73d03ffedc0dd336d9383d2e17cf74548a89fc7ca4c201c599817c97bbc6', expand=False)
version('1.11.0.post1', sha256='65c20f276399a7d406c4850af7a6f149472d301931fd1da6a60bad59d43fa47b', expand=False) version('1.11.0.post1', sha256='65c20f276399a7d406c4850af7a6f149472d301931fd1da6a60bad59d43fa47b', expand=False)
variant('fuse', default=False, description='Build with FUSE support') variant('fuse', default=False, description='Build with FUSE support')
@ -18,8 +19,11 @@ class PyAzuremlDatasetRuntime(Package):
extends('python') extends('python')
depends_on('python@3.0:3.999', type=('build', 'run')) depends_on('python@3.0:3.999', type=('build', 'run'))
depends_on('py-pip', type='build') depends_on('py-pip', type='build')
depends_on('py-azureml-dataprep@2.0.1:2.0.999', type=('build', 'run')) depends_on('py-azureml-dataprep@2.10.0:2.10.999', when='@1.23.0', type=('build', 'run'))
depends_on('py-pyarrow@0.17.0:0.999', type=('build', 'run')) depends_on('py-azureml-dataprep@2.0.1:2.0.999', when='@1.11.0.post1', type=('build', 'run'))
depends_on('py-pyarrow@0.17.0:1.999', when='@1.23.0', type=('build', 'run'))
depends_on('py-pyarrow@0.17.0:0.999', when='@1.11.0.post1', type=('build', 'run'))
depends_on('py-numpy@:1.19.2,1.19.4:', when='@1.23.0:', type=('build', 'run'))
depends_on('py-fusepy@3.0.1:3.999', when='+fuse', type=('build', 'run')) depends_on('py-fusepy@3.0.1:3.999', when='+fuse', type=('build', 'run'))
def install(self, spec, prefix): def install(self, spec, prefix):