summaryrefslogtreecommitdiff
path: root/simplejson
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2023-02-04 13:44:19 -0800
committerBob Ippolito <bob@redivi.com>2023-02-04 15:37:45 -0800
commitfb7f4004788aa939af4e766262a02b9bad0f70a9 (patch)
tree423c9bde714beb0dcc8649a3336031e1c19183c7 /simplejson
parentc891b95f40711e3dcd23bd4180b5665dce3a2032 (diff)
downloadsimplejson-fb7f4004788aa939af4e766262a02b9bad0f70a9.tar.gz
Fix #307. Build a pure python wheel
Diffstat (limited to 'simplejson')
-rw-r--r--simplejson/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index b3e8a81..11294ee 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -118,7 +118,7 @@ Serializing multiple objects to JSON lines (newline-delimited JSON)::
"""
from __future__ import absolute_import
-__version__ = '3.18.1'
+__version__ = '3.18.2'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',