Skip to content

Commit

Permalink
Merge pull request #504 from itamarst/503-python-313-support
Browse files Browse the repository at this point in the history
Python 3.13 support
  • Loading branch information
itamarst authored Aug 15, 2024
2 parents 265a793 + 39eccda commit 3fad015
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
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

0 comments on commit 3fad015

Please sign in to comment.