From 86d8073a9c1a007b4cf4481b07cdb6a1c74c292a Mon Sep 17 00:00:00 2001 From: Mike McKerns Date: Mon, 23 Sep 2024 11:35:17 -0400 Subject: [PATCH] add formal support for python 3.13 (#135) * add formal support for python 3.13 * use 3.13-dev on travis --- .travis.yml | 7 +++---- setup.py | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ee133b..63aae18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,15 +29,14 @@ matrix: - python: 'pypy3.8-7.3.9' # at 7.3.11 env: - - python: 'pypy3.9-7.3.9' # at 7.3.15 + - python: 'pypy3.9-7.3.9' # at 7.3.16 env: - - python: 'pypy3.10-7.3.15' + - python: 'pypy3.10-7.3.17' env: allow_failures: - - python: '3.13-dev' - - python: 'pypy3.10-7.3.15' # CI missing + - python: 'pypy3.10-7.3.17' # CI missing fast_finish: true cache: diff --git a/setup.py b/setup.py index 9680112..481d3c8 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ '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 :: Database',