Skip to content

Commit f7d61c2

Browse files
committed
Removed Python 2 support
1 parent fe2a9a1 commit f7d61c2

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Using Python for the project
55
language: python
66
python:
7-
- "2.7"
87
- "3.4"
98
- "3.5"
109
# Python 3.6 is set to test and deploy the docs in the configuration matrix

README.rst

+1-5
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,9 @@ Prerequisites
5151

5252
The project has been tested in the following versions of the interpreter:
5353

54-
- Python 2.6
55-
- Python 2.7
56-
- Python 3.3
5754
- Python 3.4
5855
- Python 3.5
59-
- Pypy
60-
- Pypy 3
56+
- Python 3.6
6157

6258
All other dependencies are indicated on the requirements.txt file.
6359
The included makefile can install them with the command:

setup.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,10 @@ def run_tests(self):
7777
'Intended Audience :: Developers',
7878
'Operating System :: OS Independent',
7979
'Programming Language :: Python',
80-
'Programming Language :: Python :: 2',
81-
'Programming Language :: Python :: 2.6',
82-
'Programming Language :: Python :: 2.7',
8380
'Programming Language :: Python :: 3',
84-
'Programming Language :: Python :: 3.2',
8581
'Programming Language :: Python :: 3.3',
8682
'Programming Language :: Python :: 3.4',
87-
'Programming Language :: Python :: Implementation :: PyPy',
83+
'Programming Language :: Python :: 3.5',
8884
'Topic :: Software Development :: Libraries :: Python Modules'
8985
],
9086
long_description=read('README.rst'),

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{27,34,35,36},
3+
py{34,35,36},
44
pypy{,3},
55
check,
66
docs,

0 commit comments

Comments
 (0)