Skip to content

Commit 7bfaf10

Browse files
authored
Merge pull request #91 from hugovk/add-3.12
Add support for Python 3.12 and drop EOL 3.7
2 parents bd296b5 + 9b4800e commit 7bfaf10

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.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.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: |

appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ image: Visual Studio 2019
55

66
environment:
77
matrix:
8-
- PYTHON: "C:\\Python36"
9-
- PYTHON: "C:\\Python36-x64"
10-
- PYTHON: "C:\\Python37"
11-
- PYTHON: "C:\\Python37-x64"
128
- PYTHON: "C:\\Python38"
139
- PYTHON: "C:\\Python38-x64"
1410
- PYTHON: "C:\\Python39"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ authors = [
77
]
88
readme = "README.rst"
99
license = {file = "LICENSE"}
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.8"
1111
classifiers = [
1212
"License :: OSI Approved :: BSD License",
1313
"Development Status :: 4 - Beta",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.7",
1615
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3 :: Only",
2121
]
2222
keywords = ["cycle kwargs"]

0 commit comments

Comments
 (0)