Skip to content

Commit 7df85a2

Browse files
committed
Add support of py3.11-py3.14
1 parent 92aef45 commit 7df85a2

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/analysis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
- "3.9"
1111
- "3.10"
1212
- "3.11"
13+
- "3.12"
14+
- "3.13"
15+
- "3.14"
1316
steps:
1417
- uses: actions/checkout@v1
1518
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ eradicate-aggressive = true
99
[tool.black]
1010
line-length = 80
1111
skip-string-normalization = true
12-
target-version = ["py38", "py39", "py310"]
12+
target-version = ["py38", "py39", "py310", "py311", "py312", "py313", "py314"]
1313
exclude = '''
1414
/(
1515
\.pytest_cache

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ def __load_requirements() -> Sequence[str]:
4848
'Programming Language :: Python :: 3.9',
4949
'Programming Language :: Python :: 3.10',
5050
'Programming Language :: Python :: 3.11',
51+
'Programming Language :: Python :: 3.12',
52+
'Programming Language :: Python :: 3.13',
53+
'Programming Language :: Python :: 3.14',
5154
'Topic :: Software Development :: Libraries :: Python Modules',
5255
'Topic :: Software Development :: Quality Assurance',
5356
],

0 commit comments

Comments
 (0)