From 6bac8f2e17042f1b90f4677031eee5e862c20640 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 9 Sep 2024 15:32:03 -0400 Subject: [PATCH] build: Drop Python 3.8 testing/support. --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 5 +++++ edx_api_doc_tools/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2da13eb..b2c12d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.8", "3.11", "3.12"] + python-version: ["3.11", "3.12"] toxenv: [ django42-drflatest,quality diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6e9224d..97b89f0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,11 @@ Change Log Unreleased ---------- +2.0.0 --- 2024-09-09 +-------------------- +* Drop support for Python 3.8 +* Add setuptools as a direct dependency + 1.8.0 --- 2024-02-29 -------------------- * Add support for python 3.11 and 3.12 support. diff --git a/edx_api_doc_tools/__init__.py b/edx_api_doc_tools/__init__.py index d4926a4..7af30d8 100644 --- a/edx_api_doc_tools/__init__.py +++ b/edx_api_doc_tools/__init__.py @@ -46,4 +46,4 @@ ) -__version__ = '1.8.0' +__version__ = '2.0.0'