Skip to content

Commit 8d8d186

Browse files
ramiro-ebramiro
andauthored
fix(docs): correct minimum supported Python version (#66)
Co-authored-by: Ramiro Morales <cramm0@gmail.com>
1 parent f14123f commit 8d8d186

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ redshift_connector
77
.. |PyPi| image:: https://img.shields.io/pypi/v/redshift_connector.svg?maxAge=432000&style=flat-square
88
:target: https://pypi.org/project/redshift_connector/
99

10-
.. |Python Version| image:: https://img.shields.io/badge/python->=3.5-brightgreen.svg
10+
.. |Python Version| image:: https://img.shields.io/badge/python->=3.6-brightgreen.svg
1111
:target: https://pypi.org/project/redshift_connector/
1212

1313
``redshift_connector`` is the Amazon Redshift connector for

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def get_tag(self):
9898
author_email="redshift-drivers@amazon.com",
9999
url="https://github.com/aws/amazon-redshift-python-driver",
100100
license="Apache License 2.0",
101-
python_requires=">=3.5",
101+
python_requires=">=3.6",
102102
install_requires=open("requirements.txt").read().strip().split("\n"),
103103
extras_require=optional_deps,
104104
classifiers=[
@@ -107,7 +107,6 @@ def get_tag(self):
107107
"License :: OSI Approved :: BSD License",
108108
"Programming Language :: Python",
109109
"Programming Language :: Python :: 3",
110-
"Programming Language :: Python :: 3.5",
111110
"Programming Language :: Python :: 3.6",
112111
"Programming Language :: Python :: Implementation",
113112
"Programming Language :: Python :: Implementation :: CPython",

test/performance/protocol_performance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212
THIS IS A MANUAL TEST REQUIRING LEADER NODE ACCESS ON A REDSHIFT CLUSTER
1313
1) Execute protocol_perf_test.sql, using a tool like psql, on your Redshift cluster
14-
2) Install Python>=3.5 on the leader node of your Redshift cluster and install redshift_connector
14+
2) Install Python>=3.6 on the leader node of your Redshift cluster and install redshift_connector
1515
3) Hardcode user, password, password arguments for connect(...). Ensure host is set to 'localhost' and SSL is
1616
disabled.
1717
4) Execute this script from the leader node, the script will output performance results

0 commit comments

Comments
 (0)