diff --git a/pyproject.toml b/pyproject.toml index 5230405..1f705b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisgraph" -version = "2.4.4" +version = "2.4.5" description = "RedisGraph Python Client" authors = ["Redis "] license = "BSD-3-Clause" @@ -16,7 +16,7 @@ classifiers=[ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'License :: OSI Approved :: BSD License', - 'Development Status :: 5 - Production/Stable' + 'Development Status :: 7 - Inactive' ] [tool.poetry.urls] diff --git a/redisgraph/__init__.py b/redisgraph/__init__.py index 34fd737..e283cea 100644 --- a/redisgraph/__init__.py +++ b/redisgraph/__init__.py @@ -1,4 +1,10 @@ +from warnings import warn from .node import Node # noqa from .edge import Edge # noqa from .graph import Graph # noqa from .path import Path # noqa + +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)