summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2011-07-20 10:57:46 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2011-07-20 10:57:46 +0200
commit98caea1496846935dd60a0e170c401e91ce9029a (patch)
tree7ff4316f9c68a0e1de5a383f9242d6229ac45419
parent3284e098e54c816c561ccb800d978b570f08c36e (diff)
downloadmarkupsafe-98caea1496846935dd60a0e170c401e91ce9029a.tar.gz
And now it should work again on pypy0.15
-rw-r--r--CHANGES6
-rw-r--r--setup.py4
2 files changed, 8 insertions, 2 deletions
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 @@ def run_setup(with_binary):
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 @@ def try_building_extension():
if not (is_pypy or is_jython):
try_building_extension()
else:
- run_setpu(False)
+ run_setup(False)