Skip to content

Commit f3ec27a

Browse files
committed
Remove end-of-line Python versions from test matrix
Python 3.6 has reached end-of-life in December 2021
1 parent 8de93a8 commit f3ec27a

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,10 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
python-version: [
38-
"3.6",
3938
"3.7",
4039
"3.8",
4140
"3.9",
4241
"3.10",
43-
"pypy-3.6",
4442
"pypy-3.7",
4543
]
4644
trino-version: [

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.6 and pypy.
8+
a distributed SQL engine. It supports Python>=3.7 and pypy.
99

1010
# Installation
1111

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
"Operating System :: Microsoft :: Windows",
6767
"Programming Language :: Python",
6868
"Programming Language :: Python :: 3",
69-
"Programming Language :: Python :: 3.6",
7069
"Programming Language :: Python :: 3.7",
7170
"Programming Language :: Python :: 3.8",
7271
"Programming Language :: Python :: 3.9",
@@ -75,7 +74,7 @@
7574
"Programming Language :: Python :: Implementation :: PyPy",
7675
"Topic :: Database :: Front-Ends",
7776
],
78-
python_requires='>=3.6',
77+
python_requires='>=3.7',
7978
install_requires=["requests"],
8079
extras_require={
8180
"all": all_require,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35,py36,py37,py38,py39
2+
envlist = py37,py38,py39
33

44
[testenv]
55
extras = tests

0 commit comments

Comments
 (0)