From 606cbe5e6fc1dbfbea2321f7a9aec4df550723b5 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 15 Sep 2024 13:27:48 -0400 Subject: [PATCH] build: Drop Python 3.8 support --- .github/workflows/ci.yml | 2 +- docs/changelog.rst | 7 ++++++- pyproject.toml | 1 - 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a35809..7e9c18f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest # service containers only available on Linux strategy: matrix: - python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] + python-version: [3.9, '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/docs/changelog.rst b/docs/changelog.rst index 68a834f..d33c8d4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +Unreleased +---------- + +- Drop support for Python 3.7 and 3.8. + 0.2.0 (2023-03-13) ------------------ @@ -42,7 +47,7 @@ Changed ~~~~~~~ - Drop support for Sphinx 3.x. -- Drop support for Python 3.6 (end-of-life 2021-12-23). +- Drop support for Python 3.6. 0.0.7 (2021-04-21) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 4201577..d90cfea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ urls = {Homepage = "https://github.com/open-contracting/ocds-index"} classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",