From 8eddcfc9d22c4c445957c0b65218d2a172a83e66 Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 9 Oct 2025 14:59:50 +0000 Subject: [PATCH] ci: update to Python 3.14 I have not updated Python interpreters for legacy bindings in scripts/run_all.sh because I have not checked if manylinux images already exist and work for building wheels. Legacy Python bindings are deprecated and we don't publish new releases for them. --- .github/workflows/ci.yml | 10 +++++----- deltachat-rpc-client/pyproject.toml | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9bfdf2d5..e58393e3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -228,9 +228,9 @@ jobs: include: # Currently used Rust version. - os: ubuntu-latest - python: 3.13 + python: 3.14 - os: macos-latest - python: 3.13 + python: 3.14 # PyPy tests - os: ubuntu-latest @@ -281,11 +281,11 @@ jobs: matrix: include: - os: ubuntu-latest - python: 3.13 + python: 3.14 - os: macos-latest - python: 3.13 + python: 3.14 - os: windows-latest - python: 3.13 + python: 3.14 # PyPy tests - os: ubuntu-latest diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index 39a7a6a4b..824875e59 100644 --- a/deltachat-rpc-client/pyproject.toml +++ b/deltachat-rpc-client/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Communications :: Chat", "Topic :: Communications :: Email" ]