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

juergbi pushed a commit to branch juerg/python-3.13
in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git

commit e4e3943acd6d4f29a8c6141e7911f867a70ef415
Author: Jürg Billeter <[email protected]>
AuthorDate: Fri Dec 20 14:07:00 2024 +0100

    Add support for Python 3.13
---
 .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 e9d9f0a..3c65591 100644
--- a/.github/common.env
+++ b/.github/common.env
@@ -1,5 +1,5 @@
 # Shared common variables
 
 CI_IMAGE_VERSION=master-1571408207
-CI_TOXENV_ALL=py39,py310,py311,py312
-CI_TOXENV_MASTER=py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master
+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
diff --git a/setup.py b/setup.py
index 61a9ca9..55bc4d7 100755
--- a/setup.py
+++ b/setup.py
@@ -57,6 +57,7 @@ setup(
         "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3.11",
         "Programming Language :: Python :: 3.12",
+        "Programming Language :: Python :: 3.13",
         "Topic :: Software Development :: Build Tools",
     ],
     description="A collection of plugins for BuildStream.",
diff --git a/tox.ini b/tox.ini
index 0603b85..a248d6e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,7 +16,7 @@
 # Tox global configuration
 #
 [tox]
-envlist = py{39,310,311,312}-{bst-fixed,bst-master}
+envlist = py{39,310,311,312,313}-{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}: XDG_CACHE_HOME = {envtmpdir}/cache
-    py{39,310,311,312}: XDG_CONFIG_HOME = {envtmpdir}/config
-    py{39,310,311,312}: XDG_DATA_HOME = {envtmpdir}/share
+    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
     !master: BST_VERSION = 2.2.1
     master: BST_VERSION = master
 
 allowlist_externals =
-    py{39,310,311,312}:
+    py{39,310,311,312,313}:
         mv
         mkdir
        ./tests/bzr_wrapper

Reply via email to