# Conda environment specification. The dependencies defined in this file will # be automatically provisioned for runs with userManagedDependencies=False. # Details about the Conda environment file format: # https://conda.io/docs/user-guide/tasks/manage-environments.html#create-env-file-manually name: project_environment dependencies: # The python interpreter version. # Currently Azure ML only supports 3.5.2 and later. - python=3.6.2 - pip: - azureml-train-automl-runtime==1.33.0 - inference-schema - azureml-interpret==1.33.0 - azureml-defaults==1.33.0 - numpy>=1.16.0,<1.19.0 - pandas==0.25.1 - scikit-learn==0.22.1 - py-xgboost<=0.90 - fbprophet==0.5 - holidays==0.9.11 - psutil>=5.2.2,<6.0.0 channels: - anaconda - conda-forge