Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rejson"
version = "0.5.6"
version = "0.5.7"
description = "RedisJSON Python Client"
authors = ["RedisLabs <oss@redislabs.com>"]
license = "BSD-3-Clause"
Expand All @@ -17,7 +17,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable'
'Development Status :: 7 - Inactive'
]
keywords = ["Redis JSON Extension"]

Expand Down
4 changes: 4 additions & 0 deletions rejson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,7 @@ def decode(self, obj):
__version__ = "0.5.4"
from .client import Client
from .path import Path
from warnings import warn
warn("Please upgrade to redis-py (https://pypi.org/project/redis/) "
"This library is deprecated, and all features have been merged into redis-py.",
DeprecationWarning, stacklevel=2)