Skip to content

Commit 312a322

Browse files
authored
Fix merge conflict leftovers from removing Python 3.7 (#1515)
1 parent ddbb8f7 commit 312a322

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ readme = "README.md"
2828
# "LICENSE",
2929
# "THIRD_PARTY_NOTICES.md",
3030
# ]
31-
requires-python = ">=3.7"
31+
requires-python = ">=3.8" # python_requires is also located in setup.py
3232
classifiers = [
3333
"Development Status :: 5 - Production/Stable",
34-
"Programming Language :: Python :: 3.7",
3534
"Programming Language :: Python :: 3.8",
3635
"Programming Language :: Python :: 3.9",
3736
"Programming Language :: Python :: 3.10",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def build_extension(self, ext):
127127

128128
kwargs.update(
129129
{
130-
"python_requires": ">=3.8",
130+
"python_requires": ">=3.8", # python_requires is also located in pyproject.toml
131131
"zip_safe": False,
132132
"packages": packages,
133133
"package_data": {

0 commit comments

Comments
 (0)