Skip to content

Commit

Permalink
Merge pull request #121 from hugovk/test-3.11
Browse files Browse the repository at this point in the history
Test with Python 3.11-dev
  • Loading branch information
kjd committed May 10, 2022
2 parents e00ed28 + bac7cb7 commit b18ca10
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11-dev'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -35,12 +36,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11-dev', 'pypy-3.8']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit b18ca10

Please sign in to comment.