From 7de1b52cdf7544f118c2e6b205ee7b84aea57fbb Mon Sep 17 00:00:00 2001 From: Hantao Cui Date: Fri, 8 Dec 2023 21:29:11 +0000 Subject: [PATCH] Revert change to remove numba. --- .azure-pipelines/azure-pipelines-linux.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-linux.yml b/.azure-pipelines/azure-pipelines-linux.yml index 9bdd66905..6c9a423cb 100644 --- a/.azure-pipelines/azure-pipelines-linux.yml +++ b/.azure-pipelines/azure-pipelines-linux.yml @@ -20,12 +20,8 @@ jobs: displayName: 'Use Python $(python.version)' - script: | - wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh - bash Miniforge3-Linux-x86_64.sh -b - export PATH=$PATH:~/bin - mamba install -y nbmake pytest-xdist line_profiler - mamba install --file requirements.txt --file requirements-extra.txt - python -m pip install -e . + python -m pip install --upgrade pip + pip install .[dev,interop] displayName: 'Install dependencies' - script: | @@ -36,4 +32,4 @@ jobs: - script: | make -C docs html # Build the documentation. - displayName: 'make documentation' \ No newline at end of file + displayName: 'make documentation'