From dde1ee20c73aa41ad52ab7df421a606f40f92716 Mon Sep 17 00:00:00 2001 From: Weizheng Lu Date: Tue, 30 Jul 2024 10:24:06 +0800 Subject: [PATCH] fix asv --- .github/workflows/asv.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/asv.yaml b/.github/workflows/asv.yaml index 1e1053965..83a7f4271 100644 --- a/.github/workflows/asv.yaml +++ b/.github/workflows/asv.yaml @@ -29,7 +29,7 @@ jobs: fetch-depth: 0 - name: Set up conda python3.9 - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: 3.9 @@ -37,7 +37,7 @@ jobs: id: build shell: bash -el {0} run: | - pip install numpy scipy cython asv==0.5.1 coverage + pip install "numpy<2.0" scipy cython asv==0.5.1 coverage cd python && pip install -e ".[dev,extra]" - name: Run ASV benchmarks