Skip to content

Commit

Permalink
Merge pull request #648 from grlee77/gha-tests-add-py3.11
Browse files Browse the repository at this point in the history
Run GitHub actions test cases using Python 3.11
  • Loading branch information
rgommers committed Sep 11, 2022
2 parents cb1b02b + 15a16e7 commit 4cf93a4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

test_pywavelets_linux:
name: linux-cp${{ matrix.python-version }}-${{ matrix.OPTIONS_NAME }}
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
MPLBACKEND: Agg
CYTHON_TRACE: 1
Expand All @@ -20,7 +20,7 @@ jobs:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11-dev']
MINIMUM_REQUIREMENTS: [0]
USE_SCIPY: [0]
USE_SDIST: [0]
Expand Down Expand Up @@ -49,6 +49,10 @@ jobs:
python-version: 3.9
PIP_FLAGS: "--pre"
OPTIONS_NAME: "pre"
- platform_id: manylinux_x86_64
python-version: '3.11-dev'
PIP_FLAGS: "--pre"
OPTIONS_NAME: "pre"

steps:
- name: Checkout PyWavelets
Expand Down Expand Up @@ -155,7 +159,7 @@ jobs:
# Ensure that a wheel builder finishes even if another fails
fail-fast: false
matrix:
python-version: [3.8, '3.10']
python-version: [3.8, '3.10', '3.11-dev']
MINIMUM_REQUIREMENTS: [0]
USE_SCIPY: [0]
USE_SDIST: [0]
Expand Down

0 comments on commit 4cf93a4

Please sign in to comment.