Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.13 support #504

Merged
merged 3 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

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

steps:
- uses: "actions/checkout@v3"
Expand Down
7 changes: 7 additions & 0 deletions docs/source/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
What's New
==========

1.16.0
^^^^^^

Enhancements:

* Added official support for Python 3.13, though 1.15.0 works fine too.

1.15.0
^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion eliot/tests/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_numpy(self):
np.float64(2.0),
np.float16(0.5),
np.bool_(True),
np.unicode_("hello"),
np.str_("hello"),
np.byte(12),
np.short(12),
np.intc(-13),
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def read(path):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Logging",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-numpy, pypy39, pypy310, py38, py39, py310, py311, py312,
envlist = py38-numpy, pypy39, pypy310, py38, py39, py310, py311, py312, py313,
py38-twisted-latest,
linters3, sphinx

Expand All @@ -10,6 +10,8 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.13-dev: py313
pypy3.9: pypy39
pypy3.10: pypy310

Expand Down
Loading