Skip to content

Commit

Permalink
Bump CI max python version to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese authored Jan 9, 2023
1 parent b1f0eda commit 3506178
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,12 @@ jobs:
with:
fetch-depth: 0

# - name: Set up Python 3.9
# uses: actions/setup-python@v4
# with:
# python-version: 3.9
- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: 3.9
python-version: "3.10"
use-mamba: true
environment-file: continuous_integration/environment.yaml
activate-environment: test-environment
Expand All @@ -66,15 +62,15 @@ jobs:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.11"]
experimental: [false]
include:
- python-version: "3.9"
- python-version: "3.11"
os: "ubuntu-latest"
experimental: true

env:
PYTHON_VERSION: ${{ matrix.python-version }}
PYTHON_VERSION: "${{ matrix.python-version }}"
OS: ${{ matrix.os }}
UNSTABLE: ${{ matrix.experimental }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
Expand All @@ -83,17 +79,12 @@ jobs:
- name: Checkout source
uses: actions/checkout@v3

# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}

- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: ${{ matrix.python-version }}
python-version: "${{ matrix.python-version }}"
use-mamba: true
environment-file: continuous_integration/environment.yaml

Expand Down

0 comments on commit 3506178

Please sign in to comment.