Skip to content

Commit ecdfffb

Browse files
committed
Python versions update
1 parent ebef8a9 commit ecdfffb

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
37+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
3838
steps:
3939
- name: Checkout repository
4040
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
## [Unreleased]
4+
### Added
5+
- Official `Python 3.14` support, by @HardNorth
6+
### Removed
7+
- `Python 3.7` support, by @HardNorth
48

59
## [5.6.7]
610
### Changed

setup.py

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

55
from setuptools import find_packages, setup
66

7-
__version__ = "5.6.8"
7+
__version__ = "5.7.0"
88

99
TYPE_STUBS = ["*.pyi"]
1010

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
isolated_build = True
33
envlist =
44
pep
5-
py38
65
py39
76
py310
87
py311
98
py312
109
py313
10+
py314
1111

1212
[testenv]
1313
deps =
@@ -26,9 +26,9 @@ commands = pre-commit run --all-files --show-diff-on-failure
2626

2727
[gh-actions]
2828
python =
29-
3.8: py38
3029
3.9: py39
3130
3.10: pep, py310
3231
3.11: py311
3332
3.12: py312
3433
3.13: py313
34+
3.14: py314

0 commit comments

Comments
 (0)