Skip to content

Commit b18ca10

Browse files
authored
Merge pull request #121 from hugovk/test-3.11
Test with Python 3.11-dev
2 parents e00ed28 + bac7cb7 commit b18ca10

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ jobs:
1919
- '3.8'
2020
- '3.9'
2121
- '3.10'
22+
- '3.11-dev'
2223

2324
steps:
24-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2526
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v3
2728
with:
2829
python-version: ${{ matrix.python-version }}
2930
- name: Install dependencies
@@ -35,12 +36,12 @@ jobs:
3536
runs-on: ubuntu-latest
3637
strategy:
3738
matrix:
38-
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
39+
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11-dev', 'pypy-3.8']
3940

4041
steps:
41-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4243
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v2
44+
uses: actions/setup-python@v3
4445
with:
4546
python-version: ${{ matrix.python-version }}
4647
- name: Install dependencies

0 commit comments

Comments
 (0)