Skip to content

Commit 6761a72

Browse files
committed
fix: set minimum python to 3.8 in setup.py
1 parent e575ef2 commit 6761a72

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-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: 1 addition & 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,7 +49,6 @@ 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",
5454
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)