Skip to content

Commit 72fab7c

Browse files
committed
Add offical support for PyPy.
1 parent 9a3a195 commit 72fab7c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ env:
44
- TOXENV=py32
55
- TOXENV=py33
66
- TOXENV=py34
7+
- TOXENV=pypy
78
- TOXENV=flake8
89
before_install:
910
- sudo apt-get update -qq

docs/release-2.6.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Python-Markdown 2.6 Release Notes
1010
We are pleased to release Python-Markdown 2.6 which adds a few new features
1111
and fixes various bugs. See the list of changes below for details.
1212

13-
Python-Markdown version 2.6 supports Python versions 2.7, 3.2, 3.3, and 3.4.
13+
Python-Markdown version 2.6 supports Python versions 2.7, 3.2, 3.3, and 3.4 as well as PyPy.
1414

1515
Backwards-incompatible Changes
1616
------------------------------
@@ -112,6 +112,11 @@ Backwards-incompatible Changes
112112
What's New in Python-Markdown 2.6
113113
---------------------------------
114114

115+
* Official support for [PyPy] has been added. While Python-Markdown has most likley
116+
worked on PyPy for some time, it is now offically supported and tested on PyPy.
117+
118+
[PyPy]: http://pypy.org/
119+
115120
* The [Meta-Data] Extension now includes optional support for [YAML] style
116121
meta-data. By default, the YAML deliminators are recognized, however, the
117122
actual data is parsed as previously. This follows the syntax of

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py32, py33, py34, flake8
2+
envlist = py27, py32, py33, py34, pypy, flake8
33

44
[testenv]
55
downloadcache = {toxworkdir}/cache

0 commit comments

Comments
 (0)