From 366e3e228cb463816405fdc2501f2efd2cf00979 Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Sun, 8 Dec 2024 13:17:26 +0100 Subject: [PATCH] feat: drop support for python 3.8 --- .github/workflows/ci.yml | 2 +- CONTRIBUTING.md | 2 +- pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50bb65989a..b5e1496151 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,7 +100,7 @@ jobs: runs-on: ubuntu-24.04 strategy: matrix: - python-version: ['3.8', '3.12'] + python-version: ['3.9', '3.12'] db-backend: [mysql, postgres] steps: - uses: actions/checkout@v4 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 93e917e5a7..e671bbe8e2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ If you decide to work on the issue yourself, please wait until you received some ## How to set up your development environment -You need [Python 3.8+](https://www.python.org/downloads). +You need [Python 3.9+](https://www.python.org/downloads). Install the package with development requirements: diff --git a/pyproject.toml b/pyproject.toml index 4eb52f24e0..785c6c3446 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ license = {text = "Apache-2.0"} authors = [ {name = "RDMO Arbeitsgemeinschaft", email = "rdmo-team@listserv.dfn.de"}, ] -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", @@ -27,7 +27,6 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",