Skip to content

Commit 1bb2324

Browse files
Add support for Python 3.14 (#393)
1 parent c42bf92 commit 1bb2324

File tree

7 files changed

+8
-5
lines changed

7 files changed

+8
-5
lines changed

.github/workflows/linuxbrew.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1212
env:
1313
# For some unknown reason, linuxbrew tries to use "gcc-11" by default, which doesn't exist.
1414
CC: gcc

.github/workflows/macosx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: macos-latest
99
strategy:
1010
matrix:
11-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1212
static_deps: ["static", ""]
1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/manylinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-abi: [cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312, cp313-cp313]
11+
python-abi: [cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312, cp313-cp313, cp314-cp314]
1212
image:
1313
- manylinux2014_x86_64
1414
- manylinux_2_28_x86_64

.github/workflows/sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
15-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ python:
1414
- "3.11"
1515
- "3.12"
1616
- "3.13"
17+
- "3.14"
1718

1819
env:
1920
global:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ build = [
9494
"cp310-*",
9595
"cp311-*",
9696
"cp312-*",
97-
"cp313-*"
97+
"cp313-*",
98+
"cp314-*"
9899
]
99100
build-verbosity = 1
100101
build-frontend = "build"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
'Programming Language :: Python :: 3.11',
5151
'Programming Language :: Python :: 3.12',
5252
'Programming Language :: Python :: 3.13',
53+
'Programming Language :: Python :: 3.14',
5354
'Topic :: Text Processing :: Markup :: XML',
5455
'Typing :: Typed',
5556
],

0 commit comments

Comments
 (0)