Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 47dbdf7

Browse files
committed
Add support for Python 3.12
1 parent bd296b5 commit 47dbdf7

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/reviewdog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: flake8
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Set up Python 3
1818
uses: actions/setup-python@v4
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-20.04
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 0
5050

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@ jobs:
1616

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

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

2626
- name: Set up Python ${{ matrix.python-version }}
2727
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python-version }}
30+
allow-prereleases: true
3031

3132
- name: Install Python dependencies
3233
run: |

pyproject.toml

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

0 commit comments

Comments
 (0)