Skip to content

Commit 0ff6edd

Browse files
committed
Test with Python 3.14
1 parent 3fb3558 commit 0ff6edd

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "3.11"
2121
- "3.12"
2222
- "3.13"
23+
- "3.14"
2324
steps:
2425
- uses: actions/checkout@v5
2526
with:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## [Unreleased]
22

33
## Added
4-
- Support Python 3.13
4+
- Support Python 3.13 and 3.14
55
- Typing for IDE autocomplete
66
- Support for EMOJI and CJK Unicode
77
- Support for `DatumInContext` in-place updating

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@
3434
'Programming Language :: Python :: 3.11',
3535
'Programming Language :: Python :: 3.12',
3636
'Programming Language :: Python :: 3.13',
37+
'Programming Language :: Python :: 3.14',
3738
],
3839
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ min_version = 4.3.5
33

44
envlist =
55
coverage-erase
6-
py{3.13, 3.12, 3.11, 3.10}
6+
py{3.14, 3.13, 3.12, 3.11, 3.10}
77
coverage-report
88

99
skip_missing_interpreters = True
@@ -15,7 +15,7 @@ package = wheel
1515
wheel_build_env = build_wheel
1616

1717
depends =
18-
py{3.13, 3.12, 3.11, 3.10}: coverage-erase
18+
py{3.14, 3.13, 3.12, 3.11, 3.10}: coverage-erase
1919
deps =
2020
coverage[toml]
2121
pytest
@@ -35,7 +35,7 @@ commands =
3535

3636
[testenv:coverage-report]
3737
depends =
38-
py{3.13, 3.12, 3.11, 3.10}
38+
py{3.14, 3.13, 3.12, 3.11, 3.10}
3939
no_package = true
4040
skip_install = true
4141
deps =

0 commit comments

Comments
 (0)