Skip to content

Commit bbf5f84

Browse files
authored
Merge pull request #67 from SamuraJey/python314
Add support for Python 3.14
2 parents 49e47f0 + 4a7e951 commit bbf5f84

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
107+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.10"]
108108
os: [ubuntu-latest, macos-latest, windows-latest]
109109
exclude:
110110
- os: windows-latest
@@ -143,7 +143,7 @@ jobs:
143143
tox -e cov -- --md-report-output "${REPORT_OUTPUT}"
144144
145145
- run: ls -alR
146-
if : ${{ matrix.os != 'windows-latest' }}
146+
if: ${{ matrix.os != 'windows-latest' }}
147147

148148
- name: Output reports to the job summary when tests fail
149149
if: failure()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exclude = '''
2626
| docs/conf.py
2727
'''
2828
line-length = 100
29-
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
29+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313', 'py314']
3030

3131
[tool.isort]
3232
include_trailing_comma = true

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def get_release_command_class() -> dict[str, type[setuptools.Command]]:
8080
"Programming Language :: Python :: 3.11",
8181
"Programming Language :: Python :: 3.12",
8282
"Programming Language :: Python :: 3.13",
83+
"Programming Language :: Python :: 3.14",
8384
"Programming Language :: Python :: 3 :: Only",
8485
"Programming Language :: Python :: Implementation :: CPython",
8586
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313}
3+
py{39,310,311,312,313,314}
44
pypy3
55
build
66
cov

0 commit comments

Comments
 (0)