Skip to content

Commit 3fad015

Browse files
authored
Merge pull request #504 from itamarst/503-python-313-support
Python 3.13 support
2 parents 265a793 + 39eccda commit 3fad015

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev", "pypy3.9", "pypy3.10"]
1919

2020
steps:
2121
- uses: "actions/checkout@v3"

docs/source/news.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
What's New
22
==========
33

4+
1.16.0
5+
^^^^^^
6+
7+
Enhancements:
8+
9+
* Added official support for Python 3.13, though 1.15.0 works fine too.
10+
411
1.15.0
512
^^^^^^
613

eliot/tests/test_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_numpy(self):
3030
np.float64(2.0),
3131
np.float16(0.5),
3232
np.bool_(True),
33-
np.unicode_("hello"),
33+
np.str_("hello"),
3434
np.byte(12),
3535
np.short(12),
3636
np.intc(-13),

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ def read(path):
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Programming Language :: Python :: Implementation :: CPython",
2728
"Programming Language :: Python :: Implementation :: PyPy",
2829
"Topic :: System :: Logging",

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38-numpy, pypy39, pypy310, py38, py39, py310, py311, py312,
2+
envlist = py38-numpy, pypy39, pypy310, py38, py39, py310, py311, py312, py313,
33
py38-twisted-latest,
44
linters3, sphinx
55

@@ -10,6 +10,8 @@ python =
1010
3.10: py310
1111
3.11: py311
1212
3.12: py312
13+
3.13: py313
14+
3.13-dev: py313
1315
pypy3.9: pypy39
1416
pypy3.10: pypy310
1517

0 commit comments

Comments
 (0)