From 8923817abc2bdbb88bc05a1ffaca6d9907521a9c Mon Sep 17 00:00:00 2001 From: Kamforka Date: Tue, 4 Mar 2025 21:38:34 +0100 Subject: [PATCH] #401 - Remove support for python 3.8 --- .github/workflows/_static-checks.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_static-checks.yml b/.github/workflows/_static-checks.yml index c25ac04..ed4fcdb 100644 --- a/.github/workflows/_static-checks.yml +++ b/.github/workflows/_static-checks.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 2a3f354..bf0852e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "thehive4py" description = "Python client for TheHive5" version = "2.0.0b9" -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = ["requests~=2.27"] readme = "README.md" keywords = ["thehive5", "api", "client"] @@ -16,7 +16,6 @@ classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Natural Language :: English", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",