From 2085fded9f712fef6255327fd6c5a8ac45316c5b Mon Sep 17 00:00:00 2001 From: mmckerns Date: Sat, 21 Sep 2024 22:27:37 -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 ca9bb44d..e5e09ff2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,21 +20,20 @@ matrix: - python: '3.12' env: - - python: '3.13-dev' + - python: '3.13' env: - 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 fee161b4..77949b88 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', From 6b745077383292ad3714736ba71f9ff4b56eb77c Mon Sep 17 00:00:00 2001 From: mmckerns Date: Mon, 23 Sep 2024 01:11:03 -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 e5e09ff2..fdf12660 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ matrix: - python: '3.12' env: - - python: '3.13' + - python: '3.13-dev' env: - python: 'pypy3.8-7.3.9' # at 7.3.11