From fe4f07ff45dcb4ac8724af2391b89a8e23e74a76 Mon Sep 17 00:00:00 2001 From: Mike McKerns Date: Mon, 23 Sep 2024 11:29:11 -0400 Subject: [PATCH] formal support for python 3.13 (#59) * add 3.13 classifier * use 3.13-dev on travis --- .travis.yml | 11 +++++------ setup.py | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 724ff9b..7e6f51b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,20 +28,19 @@ matrix: - python: 'pypy3.8-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.9-7.3.15' + - python: 'pypy3.9-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.8-7.3.11' # CI missing - - python: 'pypy3.9-7.3.15' # CI missing - - python: 'pypy3.10-7.3.15' # CI missing + - python: 'pypy3.9-7.3.16' # CI missing + - python: 'pypy3.10-7.3.17' # CI missing fast_finish: true cache: diff --git a/setup.py b/setup.py index 2ad1dba..568d52c 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 :: Scientific/Engineering',