Skip to content

Commit d5516e9

Browse files
committed
chore: Raised minimum supported Python version from 3.6 to 3.7
1 parent bc4503e commit d5516e9

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

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.6-brightgreen.svg
10+
.. |Python Version| image:: https://img.shields.io/badge/python->=3.7-brightgreen.svg
1111
:target: https://pypi.org/project/redshift_connector/
1212

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

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def get_tag(self):
118118
author_email="redshift-drivers@amazon.com",
119119
url="https://github.com/aws/amazon-redshift-python-driver",
120120
license="Apache License 2.0",
121-
python_requires=">=3.6",
121+
python_requires=">=3.7",
122122
install_requires=open("requirements.txt").read().strip().split("\n"),
123123
extras_require=optional_deps,
124124
classifiers=[
@@ -127,12 +127,14 @@ def get_tag(self):
127127
"License :: OSI Approved :: BSD License",
128128
"Programming Language :: Python",
129129
"Programming Language :: Python :: 3",
130-
"Programming Language :: Python :: 3.6",
131130
"Programming Language :: Python :: 3.7",
132131
"Programming Language :: Python :: 3.8",
133132
"Programming Language :: Python :: 3.9",
134133
"Programming Language :: Python :: 3.10",
135134
"Programming Language :: Python :: 3.11",
135+
"Programming Language :: Python :: 3.12",
136+
"Programming Language :: Python :: 3.13",
137+
"Programming Language :: Python :: 3.14",
136138
"Programming Language :: Python :: Implementation",
137139
"Programming Language :: Python :: Implementation :: CPython",
138140
"Programming Language :: Python :: Implementation :: Jython",

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.6 on the leader node of your Redshift cluster and install redshift_connector
14+
2) Install Python>=3.7 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)