Skip to content

Commit

Permalink
And now it should work again on pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Jul 20, 2011
1 parent 3284e09 commit 98caea1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,12 @@
MarkupSafe Changelog MarkupSafe Changelog
==================== ====================


Version 0.15
------------

- Fixed a typo that caused the library to fail to install
on pypy and jython -.-

Version 0.14 Version 0.14
------------ ------------


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_setup(with_binary):
features['speedups'] = speedups features['speedups'] = speedups
setup( setup(
name='MarkupSafe', name='MarkupSafe',
version='0.14', version='0.15',
url='http://dev.pocoo.org/', url='http://dev.pocoo.org/',
license='BSD', license='BSD',
author='Armin Ronacher', author='Armin Ronacher',
Expand Down Expand Up @@ -125,4 +125,4 @@ def try_building_extension():
if not (is_pypy or is_jython): if not (is_pypy or is_jython):
try_building_extension() try_building_extension()
else: else:
run_setpu(False) run_setup(False)

0 comments on commit 98caea1

Please sign in to comment.