From ae96746b6e474560324278539a3a5f6da436d8f4 Mon Sep 17 00:00:00 2001 From: lukashergt Date: Mon, 11 Mar 2024 18:37:03 -0700 Subject: [PATCH] make conda install `pandas~=2.2.0` --- .github/workflows/CI.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 8a881367..f2139d94 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -106,7 +106,6 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: conda-incubator/setup-miniconda@v2 with: - auto-update-conda: true python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -114,7 +113,7 @@ jobs: run: | conda config --append channels conda-forge conda install pytest pytest-cov - conda install scipy numpy 'matplotlib>=3.6.1,<3.9.0' 'pandas>=2.0.0,<2.2.0' + conda install scipy numpy 'matplotlib>=3.6.1,<3.9.0' 'pandas~=2.2.0' - name: Test with pytest shell: bash -l {0}