From ec2cf59baaee522da4478f826f2a8caeacd14ff2 Mon Sep 17 00:00:00 2001 From: Raymond Yang Date: Sat, 5 Jan 2019 18:41:40 -0800 Subject: [PATCH] Enable building python37 packages (#283) --- .../azure-pipelines-py-packaging.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/tools/ci_build/github/azure-pipelines/azure-pipelines-py-packaging.yml b/tools/ci_build/github/azure-pipelines/azure-pipelines-py-packaging.yml index 07c7960d49..bef731d94b 100644 --- a/tools/ci_build/github/azure-pipelines/azure-pipelines-py-packaging.yml +++ b/tools/ci_build/github/azure-pipelines/azure-pipelines-py-packaging.yml @@ -73,6 +73,8 @@ jobs: python.version: '3.5' Python36: python.version: '3.6' + Python37: + python.version: '3.7' variables: buildDirectory: '$(Build.SourcesDirectory)\build' steps: @@ -128,6 +130,8 @@ jobs: python.version: '3.5' Python36: python.version: '3.6' + Python37: + python.version: '3.7' steps: - task: CondaEnvironment@1 inputs: @@ -192,7 +196,8 @@ jobs: python.version: '3.5' Python36: python.version: '3.6' - + Python37: + python.version: '3.7' steps: - task: CondaEnvironment@1 inputs: @@ -222,10 +227,3 @@ jobs: - script: 'sudo rm -rf $(Agent.BuildDirectory)' displayName: 'Clean build folders/files' condition: always() - - - task: CmdLine@1 - displayName: 'Deactivating Conda Environment' - inputs: - filename: deactivate - continueOnError: true - condition: always()