Skip to content

Commit 701833c

Browse files
authored
Merge pull request #197 from JinHai-CN/master
Add support for python 3.14
2 parents c8d8011 + 6f9941a commit 701833c

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = ">=3.8.2,<3.14"
13+
python = ">=3.8.2,<3.15"
1414
chardet = "^5.2.0"
1515
cssselect = [
1616
{ version = "~1.2", markers = "python_version < '3.9'" },

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def find_version(*file_paths):
6565
"Programming Language :: Python :: 3.11",
6666
"Programming Language :: Python :: 3.12",
6767
"Programming Language :: Python :: 3.13",
68+
"Programming Language :: Python :: 3.14",
6869
"Programming Language :: Python :: Implementation :: PyPy",
6970
],
7071
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tox]
77
envlist =
8-
py{38,39,310,311,312,313,py3}, doc
8+
py{38,39,310,311,312,313,314,py3}, doc
99
skip_missing_interpreters =
1010
True
1111

0 commit comments

Comments
 (0)