From 5ec59bb6d42cb3436b2e508f8c0cd8612169f512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 24 Sep 2024 14:22:57 +0200 Subject: [PATCH] chore: Dropped support for Python 3.8 --- .github/workflows/pythonpackage.yml | 1 - .github/workflows/setup.yml | 2 +- CHANGES.rst | 5 +++++ pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 309f978..aa81b00 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -12,7 +12,6 @@ jobs: strategy: matrix: python-version: - - '3.8' - '3.9' - '3.10' - '3.11' diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index d133406..056126d 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -40,7 +40,7 @@ jobs: env: CIBW_ARCHS: ${{ matrix.config.arch }} CIBW_BUILD: cp*-${{ matrix.config.platform }} - CIBW_SKIP: cp36* cp37* + CIBW_SKIP: cp36* cp37* cp38 - uses: actions/upload-artifact@v4 with: diff --git a/CHANGES.rst b/CHANGES.rst index f4ae023..38ef515 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +2.6 +--- + +* Dropped support for Python 3.8. + 2.5 --- diff --git a/pyproject.toml b/pyproject.toml index e900b2c..cb07a5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ description = "Python module (in c) for siphash-2-4" keywords = ["siphash", "siphash-2-4"] name = "siphashc" -requires-python = ">=3.8" +requires-python = ">=3.9" version = "2.5" [[project.authors]]