Skip to content

Commit 342f740

Browse files
committed
remove python <3.6 from root filea
1 parent 978d010 commit 342f740

4 files changed

Lines changed: 5 additions & 15 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@ environment:
33

44
# For Python versions available on Appveyor, see
55
# https://www.appveyor.com/docs/windows-images-software/#python
6-
# Python pre-2.7 and 3.0-3.4 have reached EOL
6+
# Only Python 3.6+ is supported
77

8-
- PYTHON: "C:\\Python27"
9-
- PYTHON: "C:\\Python35"
108
- PYTHON: "C:\\Python36"
119
- PYTHON: "C:\\Python37"
12-
- PYTHON: "C:\\Python27-x64"
13-
- PYTHON: "C:\\Python35-x64"
1410
- PYTHON: "C:\\Python36-x64"
1511
- PYTHON: "C:\\Python37-x64"
1612

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,12 @@ cache:
88
- "$HOME/.cache/pip"
99

1010
python:
11-
# CPython; versions pre-2.7 and 3.0-3.5 have reached EOL
12-
- "2.7"
11+
# CPython; only 3.6 is supported
1312
- "3.6"
1413
- "3.7"
1514
- 3.8-dev
1615
- nightly
1716
# PyPy:
18-
- pypy # Python 2.7
19-
- pypy3.5 # Python 3.5
2017
- pypy3
2118

2219
env:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ Python developers; providing common abstractions to
3737
different hardware devices, and a suite of utilities for sending and receiving
3838
messages on a can bus.
3939

40-
The library supports Python 2.7, Python 3.5+ as well as PyPy 2 & 3 and runs
40+
The library currently supports Python 3.6+ as well as PyPy 3 and runs
4141
on Mac, Linux and Windows.
4242

4343
================== ===========
4444
Library Version Python
4545
------------------ -----------
4646
2.x 2.6+, 3.4+
4747
3.x 2.7+, 3.5+
48-
4.x (expected) 3.6+
48+
4.x 3.6+
4949
================== ===========
5050

5151

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@
5151
classifiers=[
5252
# a list of all available ones: https://pypi.org/classifiers/
5353
"Programming Language :: Python",
54-
"Programming Language :: Python :: 2.7",
55-
"Programming Language :: Python :: 3.5",
5654
"Programming Language :: Python :: 3.6",
5755
"Programming Language :: Python :: 3.7",
5856
"Programming Language :: Python :: Implementation :: CPython",
@@ -97,11 +95,10 @@
9795

9896
# Installation
9997
# see https://www.python.org/dev/peps/pep-0345/#version-specifiers
100-
python_requires=">=2.7",
98+
python_requires=">=3.6",
10199
install_requires=[
102100
'wrapt~=1.10',
103101
'aenum',
104-
'typing;python_version<"3.5"',
105102
'windows-curses;platform_system=="Windows"',
106103
],
107104
setup_requires=["pytest-runner"],

0 commit comments

Comments
 (0)