From 973b11d88ce867b8a0245fac62a10546796e9f94 Mon Sep 17 00:00:00 2001 From: John Stone Date: Mon, 12 Feb 2024 11:28:02 -0500 Subject: [PATCH] Support Python 3.8 --- SECURITY.md | 4 ++-- pyproject.toml | 3 ++- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 78f13c2..769fef2 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -18,8 +18,8 @@ Unit testing is performed with every pull request or commit to `main`. | Version | Supported | |:--------|:-----------------------------------------------:| -| \>= 3.9 | ![Yes](https://img.shields.io/badge/-YES-green) | -| <= 3.8 | ![No](https://img.shields.io/badge/-NO-red) | +| \>= 3.8 | ![Yes](https://img.shields.io/badge/-YES-green) | +| <= 3.7 | ![No](https://img.shields.io/badge/-NO-red) | ## Supported CrowdStrike regions diff --git a/pyproject.toml b/pyproject.toml index 6275573..49f1903 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,9 @@ [project] name = "crowdstrike-foundry-function" description = "CrowdStrike Foundry Function Software Developer Kit for Python" -requires-python = ">=3.9.0" +requires-python = ">=3.8.0" dynamic = ['dependencies', 'version'] +readme = "README.md" [build-system] requires = ['setuptools>=67.7.2'] diff --git a/setup.py b/setup.py index ae82463..138f80d 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ PACKAGES = [ 'crowdstrike.foundry.function', ] -PYTHON_VERSION = '>=3.9.0' +PYTHON_VERSION = '>=3.8.0' SETUP_REQUIRES = [ 'setuptools', ] -VERSION = '0.5.3' +VERSION = '0.6.0' def main():