From ff891bdaaede4e8b18f7e7b23d900338b676dbae Mon Sep 17 00:00:00 2001 From: Ayan Sinha Mahapatra Date: Thu, 31 Oct 2024 17:44:18 +0530 Subject: [PATCH] Update python versions support Signed-off-by: Ayan Sinha Mahapatra --- CHANGELOG.rst | 1 + azure-pipelines.yml | 4 ++-- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c35eb48..c1558dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,7 @@ v0.4.0 (2024-10-31) - Use latest scancode-toolkit dependency model from v32.3.0 Here ``is_resolved`` was renamed to ``is_pinned`` in DependentPackage +- Drop python 3.8 and support python 3.13 v0.3.1 (2024-09-06) ------------------------ diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aff16c3..e6a5c12 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ jobs: parameters: job_name: ubuntu20_cpython image_name: ubuntu-20.04 - python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13'] test_suites: all: venv/bin/pytest -n 2 -vvs @@ -19,7 +19,7 @@ jobs: parameters: job_name: ubuntu22_cpython image_name: ubuntu-22.04 - python_versions: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13'] test_suites: all: venv/bin/pytest -n 2 -vvs diff --git a/setup.cfg b/setup.cfg index 22d0650..9da2c84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,7 +38,7 @@ zip_safe = false setup_requires = setuptools_scm[toml] >= 4 -python_requires = >=3.8 +python_requires = >=3.9 install_requires = commoncode