From b324850dc43af27d5234c4e0af738cdf3599e7fb Mon Sep 17 00:00:00 2001 From: James B Date: Fri, 27 Sep 2024 15:27:59 +0100 Subject: [PATCH] python: drop 3.8, add 3.12 --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- CHANGELOG.md | 4 ++++ setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 63cc4ef..499f804 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.9] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4cd06dd..1a13bf9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", "3.11" ] + python-version: [3.9, "3.10", "3.11", "3.12" ] django-version: [">=3.2,<4", ">=4,<5"] services: postgres: diff --git a/CHANGELOG.md b/CHANGELOG.md index fc86b22..b425ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Removed + +- Python 3.8 support, due to end of life dates. + ## [0.7.1] - 2024-05-29 ### Fixed diff --git a/setup.py b/setup.py index 4ce9906..1e9f799 100644 --- a/setup.py +++ b/setup.py @@ -31,5 +31,5 @@ extras_require={ "dev": ["pip-tools", "black==22.3", "flake8", "isort", "django-environ"] }, - python_requires=">=3.8", + python_requires=">=3.9", )