Skip to content

Commit bedabf2

Browse files
feat: Support Python 3.14 (#580)
1 parent aa207da commit bedabf2

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ body:
2727
label: Python Version
2828
description: Version of Python you are using
2929
options:
30+
- "3.14"
3031
- "3.13"
3132
- "3.12"
3233
- "3.11"
3334
- "3.10"
34-
- "3.9 (not supported)"
35+
- "3.9 or below (not supported)"
3536
- "NA"
3637
validations:
3738
required: true

.github/workflows/ci_workflow.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
python-version:
40+
- "3.14"
4041
- "3.13"
4142
- "3.12"
4243
- "3.11"
@@ -46,19 +47,19 @@ jobs:
4647
use-copy:
4748
- "true"
4849
include:
49-
- python-version: "3.13"
50+
- python-version: "3.14"
5051
postgres-version: "14"
5152
use-copy: "true"
52-
- python-version: "3.13"
53+
- python-version: "3.14"
5354
postgres-version: "15"
5455
use-copy: "true"
55-
- python-version: "3.13"
56+
- python-version: "3.14"
5657
postgres-version: "16"
5758
use-copy: "true"
58-
- python-version: "3.13"
59+
- python-version: "3.14"
5960
postgres-version: "17"
6061
use-copy: "true"
61-
- python-version: "3.13"
62+
- python-version: "3.14"
6263
postgres-version: "18"
6364
use-copy: "false"
6465
steps:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Programming Language :: Python :: Implementation :: CPython",
2829
]
2930
dependencies = [

0 commit comments

Comments
 (0)