This is an automated email from the ASF dual-hosted git repository.

juergbi pushed a commit to branch jbilleter/python3.14
in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git

commit 5bb2a27773fce47dfb283aa61849a41cbf3fae03
Author: Jürg Billeter <[email protected]>
AuthorDate: Fri Oct 17 10:26:26 2025 +0200

    Add support for Python 3.14
---
 .github/common.env |  4 ++--
 setup.py           |  1 +
 tox.ini            | 10 +++++-----
 3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/.github/common.env b/.github/common.env
index c43a36c..d5d6c82 100644
--- a/.github/common.env
+++ b/.github/common.env
@@ -1,5 +1,5 @@
 # Shared common variables
 
 CI_IMAGE_VERSION=master-1869708273
-CI_TOXENV_ALL=py39,py310,py311,py312,py313
-CI_TOXENV_MASTER=py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master,py313-bst-master
+CI_TOXENV_ALL=py39,py310,py311,py312,py313,py314
+CI_TOXENV_MASTER=py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master,py313-bst-master,py314-bst-master
diff --git a/setup.py b/setup.py
index 55bc4d7..576c4e6 100755
--- a/setup.py
+++ b/setup.py
@@ -58,6 +58,7 @@ setup(
         "Programming Language :: Python :: 3.11",
         "Programming Language :: Python :: 3.12",
         "Programming Language :: Python :: 3.13",
+        "Programming Language :: Python :: 3.14",
         "Topic :: Software Development :: Build Tools",
     ],
     description="A collection of plugins for BuildStream.",
diff --git a/tox.ini b/tox.ini
index 46e7102..21b65b8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,7 +16,7 @@
 # Tox global configuration
 #
 [tox]
-envlist = py{39,310,311,312,313}-{bst-fixed,bst-master}
+envlist = py{39,310,311,312,313,314}-{bst-fixed,bst-master}
 skip_missing_interpreters = true
 
 #
@@ -55,14 +55,14 @@ passenv =
 # These keys are not inherited by any other sections
 #
 setenv =
-    py{39,310,311,312,313}: XDG_CACHE_HOME = {envtmpdir}/cache
-    py{39,310,311,312,313}: XDG_CONFIG_HOME = {envtmpdir}/config
-    py{39,310,311,312,313}: XDG_DATA_HOME = {envtmpdir}/share
+    py{39,310,311,312,313,314}: XDG_CACHE_HOME = {envtmpdir}/cache
+    py{39,310,311,312,313,314}: XDG_CONFIG_HOME = {envtmpdir}/config
+    py{39,310,311,312,313,314}: XDG_DATA_HOME = {envtmpdir}/share
     !master: BST_VERSION = 2.6.0
     master: BST_VERSION = master
 
 allowlist_externals =
-    py{39,310,311,312,313}:
+    py{39,310,311,312,313,314}:
         mv
         mkdir
        ./tests/bzr_wrapper

Reply via email to