Skip to content

Commit 9d086e3

Browse files
authored
Merge pull request magmax#36 from mbdevpl/drop_py26_and_py33
Drop support for Python 2.6 and 3.3
2 parents fba009f + 5df65cc commit 9d086e3

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ language: python
33
sudo: false
44

55
python:
6-
- "2.6"
76
- "2.7"
8-
- "3.3"
97
- "3.4"
108
- "3.5"
119
- "3.6"
@@ -22,7 +20,7 @@ env:
2220
install:
2321
- "if [[ $TMODE == 'test' ]]; then pip install pytest; fi"
2422
- "if [[ $TMODE == 'test' ]]; then python setup.py install; fi"
25-
- pip freeze -a
23+
- pip freeze --all
2624
- ls -lh .eggs || true
2725

2826
script:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Installation
2929

3030
pip install readchar
3131

32-
The :code:`readchar` library works with python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
32+
The :code:`readchar` library works with python 2.7, 3.4, 3.5, 3.6 and Pypy.
3333

3434
Usage
3535
-----

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,8 @@ def run_tests(self):
4242
'Intended Audience :: Developers',
4343
'License :: OSI Approved :: MIT License',
4444
'Operating System :: OS Independent',
45-
'Programming Language :: Python :: 2.6',
4645
'Programming Language :: Python :: 2.7',
4746
'Programming Language :: Python :: 3.2',
48-
'Programming Language :: Python :: 3.3',
4947
'Programming Language :: Python :: 3.4',
5048
'Programming Language :: Python :: 3.5',
5149
'Programming Language :: Python :: 3.6',

0 commit comments

Comments
 (0)