From 6b133265acefc4ffb73401e4df4d29c30a0241e8 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Thu, 20 Aug 2020 11:03:56 -0400 Subject: [PATCH 1/3] MAINT: Remove manual pip upgrade --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 51b2ddb..c2ecc93 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,6 @@ variables: CIBW_SKIP: "cp27-* cp34-* pp27-*" CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\"" CIBW_BUILD_VERBOSITY: "2" - CIBW_BEFORE_BUILD: "pip install -U pip setuptools" CIBW_BEFORE_BUILD_LINUX: "yum install -y portaudio" jobs: - job: linux From e7458b53b2d2bd4bf9fb273398a5ed96dcf822ed Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Thu, 20 Aug 2020 13:35:58 -0400 Subject: [PATCH 2/3] FIX: Try again --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c2ecc93..35b138d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,8 @@ variables: CIBW_SKIP: "cp27-* cp34-* pp27-*" CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\"" CIBW_BUILD_VERBOSITY: "2" - CIBW_BEFORE_BUILD_LINUX: "yum install -y portaudio" + CIBW_BEFORE_BUILD_LINUX: "yum install -y portaudio; pip install -U pip setuptools" +" jobs: - job: linux pool: {vmImage: 'Ubuntu-16.04'} From 2d72e5ce279cb6dfa05661582119191ed01305e3 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Thu, 20 Aug 2020 13:38:27 -0400 Subject: [PATCH 3/3] FIX: Typo --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 35b138d..dbe3a63 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,6 @@ variables: CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\"" CIBW_BUILD_VERBOSITY: "2" CIBW_BEFORE_BUILD_LINUX: "yum install -y portaudio; pip install -U pip setuptools" -" jobs: - job: linux pool: {vmImage: 'Ubuntu-16.04'}