Skip to content

Commit 12eabde

Browse files
authored
Update python_requires to 3.8 (#176)
## Problem Recently removed code related to python 3.7 support because it is EOL, but forgot to include this change to setup.py where we declare what version of python is required. ## Solution Adjust the setup.py configuration. ## Type of Change - [x] Bug fix (non-breaking change which fixes an issue)
1 parent 0626b0f commit 12eabde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def read(fname):
4040
"grpc": read("requirements-grpc.txt"),
4141
},
4242
include_package_data=True,
43-
python_requires=">=3.6",
43+
python_requires=">=3.8",
4444
entry_points={
4545
'console_scripts': ['pinecone=pinecone.cli:main'],
4646
},

0 commit comments

Comments
 (0)