From 4183caf149b686538752608bac6acbaa052dba23 Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Mon, 17 Jul 2023 16:12:35 -0500 Subject: [PATCH] Add Python 3.10 and 3.11 CI jobs (#71) --- .github/workflows/ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d4170b..ff421be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,23 +9,25 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Checkout source uses: actions/checkout@v2 - name: Setup Conda Environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v2.2.0 with: - auto-update-conda: true - miniconda-version: latest - activate-environment: test + miniforge-variant: Mambaforge + miniforge-version: latest + use-mamba: true + channel-priority: strict python-version: ${{ matrix.python-version }} + auto-activate-base: false - name: Install dependencies shell: bash -l {0} - run: conda install pytest locket numpy toolz pandas blosc pyzmq pyarrow -c conda-forge + run: mamba install pytest locket numpy toolz pandas blosc pyzmq pyarrow -c conda-forge - name: Install shell: bash -l {0}