Skip to content

Commit 7c0c2d2

Browse files
committed
Remove python 3.5 support
1 parent f03d1ba commit 7c0c2d2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.ci/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pipeline {
5555
axes {
5656
axis {
5757
name 'VERSION'
58-
values '2.7', '3.5', '3.6', '3.7', '3.8'
58+
values '2.7', '3.6', '3.7', '3.8'
5959
}
6060
}
6161
stages {

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def tests_impl(session):
3232
)
3333

3434

35-
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
35+
@nox.session(python=["2.7", "3.6", "3.7", "3.8"])
3636
def test(session):
3737
tests_impl(session)
3838

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers = [
1515
"Programming Language :: Python :: 2",
1616
"Programming Language :: Python :: 2.7",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.5",
1918
"Programming Language :: Python :: 3.6",
2019
"Programming Language :: Python :: 3.7",
2120
"Programming Language :: Python :: 3.8",
@@ -27,7 +26,7 @@ classifiers = [
2726
requires = [
2827
"backports.functools-lru-cache; python_version < '3.3'"
2928
]
30-
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
29+
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
3130

3231
[tool.flit.metadata.requires-extra]
3332
develop = [

0 commit comments

Comments
 (0)