And now it should work again on pypy
diff --git a/CHANGES b/CHANGES
index 4cece02..bca464e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
MarkupSafe Changelog
====================
+Version 0.15
+------------
+
+- Fixed a typo that caused the library to fail to install
+ on pypy and jython -.-
+
Version 0.14
------------
diff --git a/setup.py b/setup.py
index 5691977..65fa171 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,7 @@
features['speedups'] = speedups
setup(
name='MarkupSafe',
- version='0.14',
+ version='0.15',
url='http://dev.pocoo.org/',
license='BSD',
author='Armin Ronacher',
@@ -125,4 +125,4 @@
if not (is_pypy or is_jython):
try_building_extension()
else:
- run_setpu(False)
+ run_setup(False)