Skip to content

Commit 502bc7a

Browse files
authored
Merge pull request #94 from GitGuardian/corenting/remove-3.7
set minimum python to 3.8
2 parents e575ef2 + 5d8ad42 commit 502bc7a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ with all the response codes and expected structures on each method.
1919

2020
## Requirements
2121

22-
Python 3.7+
22+
Python 3.8+
2323

2424
## Projects using `py-gitguardian`
2525

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Changed
2+
3+
- Set minimum Python version to >=3.8

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def get_version() -> str:
2121

2222
setup(
2323
name="pygitguardian",
24+
python_requires=">=3.8",
2425
version=get_version(),
2526
packages=find_packages(exclude=["tests"]),
2627
description="Python Wrapper for GitGuardian's API -- Scan security "
@@ -48,9 +49,11 @@ def get_version() -> str:
4849
"License :: OSI Approved :: MIT License",
4950
"Programming Language :: Python",
5051
"Programming Language :: Python :: 3",
51-
"Programming Language :: Python :: 3.7",
5252
"Programming Language :: Python :: 3.8",
5353
"Programming Language :: Python :: 3.9",
54+
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5457
"Operating System :: OS Independent",
5558
"Topic :: Security",
5659
],

0 commit comments

Comments
 (0)