Skip to content

Commit 1c7149f

Browse files
Josh Howardfindepi
authored andcommitted
Remove Python 3.5 support
1 parent 0899364 commit 1c7149f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
python-version: [
12-
3.5,
1312
3.6,
1413
3.7,
1514
3.8,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Introduction
66

77
This package provides a client interface to query [Trino](https://trino.io/)
8-
a distributed SQL engine. It supports Python>=3.5 and pypy.
8+
a distributed SQL engine. It supports Python>=3.6 and pypy.
99

1010
# Installation
1111

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"Operating System :: Microsoft :: Windows",
6060
"Programming Language :: Python",
6161
"Programming Language :: Python :: 3",
62-
"Programming Language :: Python :: 3.5",
6362
"Programming Language :: Python :: 3.6",
6463
"Programming Language :: Python :: 3.7",
6564
"Programming Language :: Python :: 3.8",
@@ -68,7 +67,7 @@
6867
"Programming Language :: Python :: Implementation :: PyPy",
6968
"Topic :: Database :: Front-Ends",
7069
],
71-
python_requires='>=3.5',
70+
python_requires='>=3.6',
7271
install_requires=["click", "requests"],
7372
extras_require={
7473
"all": all_require,

0 commit comments

Comments
 (0)