From d1524b8abb3dc9a724e642eb5ed960be4517d163 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 21 Sep 2025 10:25:47 +0200 Subject: [PATCH 1/3] CircleCI: Add Python 3.14 release candidate 3 https://www.python.org/downloads --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7de15bbfa..5a71783a8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -89,11 +89,22 @@ jobs: version: py313 sphinx-version: "72,73,74,80,81,82,latest,dev" + py314: + docker: + - image: 'cimg/python:3.14' + steps: + - run-tox: + version: py314 + sphinx-version: "72,73,74,80,81,82,latest,dev" + workflows: version: 2 tests: jobs: - build + - py314: + requires: + - build - py313: requires: - build From 6f9ca413ffa4827260c4eeb4eb58ed1689d49219 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 21 Sep 2025 10:27:19 +0200 Subject: [PATCH 2/3] tox.ini: py314 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 438157f94..90825831a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,8 @@ [tox] envlist = py{38,39,310}-sphinx{60,61,62,70,71}{-qa} - py{39,310,311,312,313}-sphinx{72,73,74,80}{-qa} - py{311,312,313}-sphinx{81,82,latest,dev}{-qa} + py{39,310,311,312,313,314}-sphinx{72,73,74,80}{-qa} + py{311,312,313,314}-sphinx{81,82,latest,dev}{-qa} [testenv] setenv = From 986892a17f36d3d485eaa5ec7ddce9aeedcf40be Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Oct 2025 23:58:50 +0200 Subject: [PATCH 3/3] Fix formatting in CircleCI config for Python 3.14 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5a71783a8..303d60331 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ jobs: py314: docker: - - image: 'cimg/python:3.14' + - image: 'cimg/python:3.14' steps: - run-tox: version: py314