summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2013-02-19 10:22:26 -0800
committerBob Ippolito <bob@redivi.com>2013-02-19 10:22:26 -0800
commit7b96b85710439cdc7dac16a4655bf407bfad77d7 (patch)
tree1089bc9127c40a0cca804bf235c29a718e16924a /setup.py
parent9b595e53a0b491bcc62c69246fe4f1c0b338d9ae (diff)
downloadsimplejson-7b96b85710439cdc7dac16a4655bf407bfad77d7.tar.gz
Fix a Python 2.x compiler warning for narrow unicode builds (#56)v3.0.8
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 429c215..92412a0 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.0.7'
+VERSION = '3.0.8'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f: