From a21eb0c0114bab01402ff5cb5dd6e96abe0540d1 Mon Sep 17 00:00:00 2001 From: Paul Nation Date: Thu, 18 Jun 2020 16:12:50 -0400 Subject: [PATCH 1/2] try pinning sphinx --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8a435ba9a..65bb20fa8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,7 +36,7 @@ steps: python -m pip install --upgrade pip setuptools wheel virtualenv virtualenv /tmp/docs_build source /tmp/docs_build/bin/activate - pip install -U qiskit jupyter sphinx nbsphinx sphinx_rtd_theme + pip install -U qiskit jupyter sphinx==3.0.4 nbsphinx sphinx_rtd_theme pip install -U qiskit-terra[visualization] cvxpy sudo apt-get install -y pandoc graphviz displayName: 'Install dependencies' From dee99679caf828a531a3367870adbdbc58fd1551 Mon Sep 17 00:00:00 2001 From: Paul Nation Date: Thu, 18 Jun 2020 16:52:08 -0400 Subject: [PATCH 2/2] move to py37 --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 65bb20fa8..e2db6bcef 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,7 +14,7 @@ pool: strategy: matrix: Python38: - python.version: '3.8' + python.version: '3.7' variables: PIP_CACHE_DIR: $(Pipeline.Workspace)/.pip steps: @@ -36,7 +36,7 @@ steps: python -m pip install --upgrade pip setuptools wheel virtualenv virtualenv /tmp/docs_build source /tmp/docs_build/bin/activate - pip install -U qiskit jupyter sphinx==3.0.4 nbsphinx sphinx_rtd_theme + pip install -U qiskit jupyter sphinx nbsphinx sphinx_rtd_theme pip install -U qiskit-terra[visualization] cvxpy sudo apt-get install -y pandoc graphviz displayName: 'Install dependencies'