Skip to content

Commit 4205423

Browse files
committed
Merge pull request #229 from gsnedders/drop-py32
Drop Python 3.2 support
2 parents f796cca + 5efd7d6 commit 4205423

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ language: python
22
python:
33
- "2.6"
44
- "2.7"
5-
- "3.2"
65
- "3.3"
76
- "3.4"
87
- "3.5"
98
- "pypy"
10-
- "pypy3"
119

1210
sudo: false
1311

CHANGES.rst

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Released on XXX
2626
this makes html5lib compliant with the Encoding Standard, and
2727
introduces a required dependency on webencodings.
2828

29+
* Cease supporting Python 3.2 (in both CPython and PyPy forms).
30+
2931

3032
0.9999999/1.0b8
3133
~~~~~~~~~~~~~~~

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ More documentation is available at http://html5lib.readthedocs.org/.
9090
Installation
9191
------------
9292

93-
html5lib works on CPython 2.6+, CPython 3.2+ and PyPy. To install it,
93+
html5lib works on CPython 2.6+, CPython 3.3+ and PyPy. To install it,
9494
use:
9595

9696
.. code-block:: bash

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
'Programming Language :: Python :: 2.6',
1616
'Programming Language :: Python :: 2.7',
1717
'Programming Language :: Python :: 3',
18-
'Programming Language :: Python :: 3.2',
1918
'Programming Language :: Python :: 3.3',
2019
'Programming Language :: Python :: 3.4',
2120
'Programming Language :: Python :: 3.5',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py26,py27,py32,py33,py34,py35,pypy,pypy3}-{base,optional}
2+
envlist = {py26,py27,py33,py34,py35,pypy}-{base,optional}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)