Skip to content

Commit

Permalink
Support Python 3.8 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
johns31459 authored Feb 13, 2024
1 parent 4eba5de commit 35ab1dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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']
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 35ab1dd

Please sign in to comment.