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

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

commit 163aa15ee82ccd857220f6a1908fbc7f5b63a6a6
Author: Jürg Billeter <[email protected]>
AuthorDate: Fri Nov 21 13:29:47 2025 +0100

    Drop support for Python 3.9
    
    Python 3.9 is no longer maintained upstream.
---
 .github/common.env |  4 ++--
 setup.py           |  1 -
 tox.ini            | 10 +++++-----
 3 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/.github/common.env b/.github/common.env
index 70890b4..2a04ad9 100644
--- a/.github/common.env
+++ b/.github/common.env
@@ -1,5 +1,5 @@
 # Shared common variables
 
 CI_IMAGE_VERSION=master-2106151116
-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
+CI_TOXENV_ALL=py310,py311,py312,py313,py314
+CI_TOXENV_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 576c4e6..b14cde5 100755
--- a/setup.py
+++ b/setup.py
@@ -53,7 +53,6 @@ setup(
         "License :: OSI Approved :: Apache Software License",
         "Operating System :: POSIX",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.9",
         "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3.11",
         "Programming Language :: Python :: 3.12",
diff --git a/tox.ini b/tox.ini
index 8c71bf6..d59da73 100644
--- a/tox.ini
+++ b/tox.ini
@@ -16,7 +16,7 @@
 # Tox global configuration
 #
 [tox]
-envlist = py{39,310,311,312,313,314}-{bst-fixed,bst-master}
+envlist = py{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,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
+    py{310,311,312,313,314}: XDG_CACHE_HOME = {envtmpdir}/cache
+    py{310,311,312,313,314}: XDG_CONFIG_HOME = {envtmpdir}/config
+    py{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,314}:
+    py{310,311,312,313,314}:
         mv
         mkdir
        {toxinidir}/tests/bzr_wrapper

Reply via email to