8000 Add support for Python 3.12 (#1134) · PyMySQL/PyMySQL@8157da5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8157da5

Browse files
authored
Add support for Python 3.12 (#1134)
1 parent 6b10225 commit 8157da5

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ concurrency:
88
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
99
cancel-in-progress: true
1010

11+
env:
12+
FORCE_COLOR: 1
13+
1114
jobs:
1215
test:
1316
runs-on: ubuntu-latest
@@ -24,6 +27,9 @@ jobs:
2427
- db: "mariadb:10.6"
2528
py: "3.11"
2629

30+
- db: "mariadb:10.6"
31+
py: "3.12"
32+
2733
- db: "mariadb:lts"
2834
py: "3.9"
2935

@@ -62,6 +68,7 @@ jobs:
6268
uses: actions/setup-python@v4
6369
with:
6470
python-version: ${{ matrix.py }}
71+
allow-prereleases: true
6572
cache: 'pip'
6673
cache-dependency-path: 'requirements-dev.txt'
6774

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.9",
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
2223
"Programming Language :: Python :: Implementation :: CPython",
2324
"Programming Language :: Python :: Implementation :: PyPy",
2425
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)
0