diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-29 23:17:33 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-29 23:26:27 +0300 |
commit | e79b38f2bbbf78d295d1901d2a79f898022d5224 (patch) | |
tree | 5432bd1656d03e7d0902a859f8616c5cc11cb4e7 | |
parent | b1be2c47d998798f112fd0338702fbe79dea430e (diff) | |
download | ydb-e79b38f2bbbf78d295d1901d2a79f898022d5224.tar.gz |
Intermediate changes
-rw-r--r-- | contrib/python/simplejson/py2/.dist-info/METADATA | 3 | ||||
-rw-r--r-- | contrib/python/simplejson/py2/simplejson/__init__.py | 2 | ||||
-rw-r--r-- | contrib/python/simplejson/py2/ya.make | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/contrib/python/simplejson/py2/.dist-info/METADATA b/contrib/python/simplejson/py2/.dist-info/METADATA index 7fe11c11df..84d46e5eca 100644 --- a/contrib/python/simplejson/py2/.dist-info/METADATA +++ b/contrib/python/simplejson/py2/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: simplejson -Version: 3.19.2 +Version: 3.19.3 Summary: Simple, fast, extensible JSON encoder/decoder for Python Home-page: https://github.com/simplejson/simplejson Author: Bob Ippolito @@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/contrib/python/simplejson/py2/simplejson/__init__.py b/contrib/python/simplejson/py2/simplejson/__init__.py index 2d1900d8c4..d3ff141d00 100644 --- a/contrib/python/simplejson/py2/simplejson/__init__.py +++ b/contrib/python/simplejson/py2/simplejson/__init__.py @@ -118,7 +118,7 @@ Serializing multiple objects to JSON lines (newline-delimited JSON):: """ from __future__ import absolute_import -__version__ = '3.19.2' +__version__ = '3.19.3' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONDecodeError', 'JSONEncoder', diff --git a/contrib/python/simplejson/py2/ya.make b/contrib/python/simplejson/py2/ya.make index 440467d10d..7397dd761d 100644 --- a/contrib/python/simplejson/py2/ya.make +++ b/contrib/python/simplejson/py2/ya.make @@ -2,7 +2,7 @@ PY2_LIBRARY() -VERSION(3.19.2) +VERSION(3.19.3) LICENSE(MIT) |