From d1629d19629becbf24a6c297d71ed9a3344ca814 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Tue, 1 May 2018 09:14:02 -0700 Subject: [PATCH] Try properly installing Python's build dependencies #2 --- .vsts/linux-buildbot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vsts/linux-buildbot.yml b/.vsts/linux-buildbot.yml index aacd17e7bb19f8..7363671603149b 100644 --- a/.vsts/linux-buildbot.yml +++ b/.vsts/linux-buildbot.yml @@ -17,7 +17,7 @@ steps: clean: true fetchDepth: 5 -- script: echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update && sudo apt-get -yq build-dep python3 +- script: echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update && sudo apt-get -yq build-dep python3.7 displayName: 'Install build dependencies' - script: ./configure --with-pydebug