Skip to content

Commit 48b6968

Browse files
authored
Merge pull request #85 from hugovk/add-3.11
Add support for Python 3.11
2 parents 54e9a8e + 1cb67ea commit 48b6968

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/reviewdog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
name: flake8
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111

1212
- name: Set up Python 3
13-
uses: actions/setup-python@v3
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: 3.9
1616

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: ["3.7", "3.8", "3.9", "3.10"]
19+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
with:
2424
fetch-depth: 0
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

@@ -42,4 +42,4 @@ jobs:
4242
pytest -raR -n auto --cov --cov-report=
4343
4444
- name: Upload code coverage
45-
uses: codecov/codecov-action@v2
45+
uses: codecov/codecov-action@v3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.8',
1818
'Programming Language :: Python :: 3.9',
1919
'Programming Language :: Python :: 3.10',
20+
'Programming Language :: Python :: 3.11',
2021
'Programming Language :: Python :: 3 :: Only',
2122
],
2223
keywords='cycle kwargs',

0 commit comments

Comments
 (0)