Skip to content

Commit

Permalink
Add Python 3.10 and 3.11 CI jobs (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Jul 17, 2023
1 parent 9db50c1 commit 4183caf
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 4183caf

Please sign in to comment.