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 2d92cc366751290bb7b505de3eeffeba3bb06ed7 Author: Jürg Billeter <[email protected]> AuthorDate: Fri Dec 20 14:02:20 2024 +0100 Drop support for Python 3.8 Python 3.8 is no longer maintained upstream and some Python packages have dropped support for it. --- .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 91f1cb5..e9d9f0a 100644 --- a/.github/common.env +++ b/.github/common.env @@ -1,5 +1,5 @@ # Shared common variables CI_IMAGE_VERSION=master-1571408207 -CI_TOXENV_ALL=py38,py39,py310,py311,py312 -CI_TOXENV_MASTER=py38-bst-master,py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master +CI_TOXENV_ALL=py39,py310,py311,py312 +CI_TOXENV_MASTER=py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master diff --git a/setup.py b/setup.py index 5417244..61a9ca9 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.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/tox.ini b/tox.ini index 5b97c50..22c69e0 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ # Tox global configuration # [tox] -envlist = py{38,39,310,311,312}-{bst-fixed,bst-master} +envlist = py{39,310,311,312}-{bst-fixed,bst-master} skip_missing_interpreters = true # @@ -55,14 +55,14 @@ passenv = # These keys are not inherited by any other sections # setenv = - py{38,39,310,311,312}: XDG_CACHE_HOME = {envtmpdir}/cache - py{38,39,310,311,312}: XDG_CONFIG_HOME = {envtmpdir}/config - py{38,39,310,311,312}: XDG_DATA_HOME = {envtmpdir}/share + 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 !master: BST_VERSION = 2.2.1 master: BST_VERSION = master allowlist_externals = - py{38,39,310,311,312}: + py{39,310,311,312}: mv mkdir ./tests/bzr_wrapper
