From 0f0f76a8e519864c791d1b359c75b3e8f41314d3 Mon Sep 17 00:00:00 2001 From: mmckerns Date: Sat, 21 Sep 2024 22:51:41 -0400 Subject: [PATCH 1/2] add formal support for python 3.13 --- .travis.yml | 9 ++++----- setup.py | 1 + 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e59bad..56f0417 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ matrix: - python: '3.12' env: - - python: '3.13-dev' + - python: '3.13' env: - PYVERSION="3.13" - DILL="master" @@ -30,17 +30,16 @@ matrix: env: - PYPY_VERSION="3.8" - - python: 'pypy3.9-7.3.9' # is 7.3.15 + - python: 'pypy3.9-7.3.9' # is 7.3.16 env: - PYPY_VERSION="3.9" - - python: 'pypy3.10-7.3.15' + - python: 'pypy3.10-7.3.17' env: - PYPY_VERSION="3.10" 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 ab8f903..b689942 100644 --- a/setup.py +++ b/setup.py @@ -267,6 +267,7 @@ def run_setup(with_extensions=True): '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', From 08f448b9d3dc45ce33b5f383520b27dfa3ca8729 Mon Sep 17 00:00:00 2001 From: mmckerns Date: Mon, 23 Sep 2024 01:11:35 -0400 Subject: [PATCH 2/2] use 3.13-dev on travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 56f0417..98a26e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ matrix: - python: '3.12' env: - - python: '3.13' + - python: '3.13-dev' env: - PYVERSION="3.13" - DILL="master"