File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 88 - " $HOME/.cache/pip"
99
1010python :
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
2219env :
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ Python developers; providing common abstractions to
3737different hardware devices, and a suite of utilities for sending and receiving
3838messages 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
4141on Mac, Linux and Windows.
4242
4343================== ===========
4444Library 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
Original file line number Diff line number Diff line change 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" ,
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" ],
You can’t perform that action at this time.
0 commit comments