Skip to content

Commit c6b9eb1

Browse files
petyaslavovabefeleme
authored andcommitted
Removing support for RedisGraph module. (#3548)
1 parent a639767 commit c6b9eb1

25 files changed

+23
-3202
lines changed

.github/wordlist.txt

-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ ConnectionPool
1212
CoreCommands
1313
EVAL
1414
EVALSHA
15-
GraphCommands
1615
Grokzen's
1716
INCR
1817
IOError
@@ -39,7 +38,6 @@ RedisCluster
3938
RedisClusterCommands
4039
RedisClusterException
4140
RedisClusters
42-
RedisGraph
4341
RedisInstrumentor
4442
RedisJSON
4543
RedisTimeSeries

.github/workflows/install_and_test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ cd ${TESTDIR}
4040
# install, run tests
4141
pip install ${PKG}
4242
# Redis tests
43-
pytest -m 'not onlycluster and not graph'
43+
pytest -m 'not onlycluster'
4444
# RedisCluster tests
4545
CLUSTER_URL="redis://localhost:16379/0"
4646
CLUSTER_SSL_URL="rediss://localhost:27379/0"
47-
pytest -m 'not onlynoncluster and not redismod and not ssl and not graph' \
47+
pytest -m 'not onlynoncluster and not redismod and not ssl' \
4848
--redis-url="${CLUSTER_URL}" --redis-ssl-url="${CLUSTER_SSL_URL}"

CHANGES

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Removing support for RedisGraph module. RedisGraph support is deprecated since Redis Stack 7.2 (https://redis.com/blog/redisgraph-eol/)
12
* Fix lock.extend() typedef to accept float TTL extension
23
* Update URL in the readme linking to Redis University
34
* Move doctests (doc code examples) to main branch

docker-compose.yml

-8
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,3 @@ services:
105105
- standalone
106106
- all-stack
107107
- all
108-
109-
redis-stack-graph:
110-
image: redis/redis-stack-server:6.2.6-v15
111-
container_name: redis-stack-graph
112-
ports:
113-
- 6480:6379
114-
profiles:
115-
- graph

docs/redismodules.rst

-33
Original file line numberDiff line numberDiff line change
@@ -51,39 +51,6 @@ These are the commands for interacting with the `RedisBloom module <https://redi
5151

5252
------
5353

54-
RedisGraph Commands
55-
*******************
56-
57-
These are the commands for interacting with the `RedisGraph module <https://redisgraph.io>`_. Below is a brief example, as well as documentation on the commands themselves.
58-
59-
**Create a graph, adding two nodes**
60-
61-
.. code-block:: python
62-
63-
import redis
64-
from redis.graph.node import Node
65-
66-
john = Node(label="person", properties={"name": "John Doe", "age": 33}
67-
jane = Node(label="person", properties={"name": "Jane Doe", "age": 34}
68-
69-
r = redis.Redis()
70-
graph = r.graph()
71-
graph.add_node(john)
72-
graph.add_node(jane)
73-
graph.add_node(pat)
74-
graph.commit()
75-
76-
.. automodule:: redis.commands.graph.node
77-
:members: Node
78-
79-
.. automodule:: redis.commands.graph.edge
80-
:members: Edge
81-
82-
.. automodule:: redis.commands.graph.commands
83-
:members: GraphCommands
84-
85-
------
86-
8754
RedisJSON Commands
8855
******************
8956

pyproject.toml

+16-41
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,8 @@ description = "Python client for Redis database and key-value store"
99
readme = "README.md"
1010
license = "MIT"
1111
requires-python = ">=3.8"
12-
authors = [
13-
{ name = "Redis Inc.", email = "[email protected]" },
14-
]
15-
keywords = [
16-
"Redis",
17-
"database",
18-
"key-value-store",
19-
]
12+
authors = [{ name = "Redis Inc.", email = "[email protected]" }]
13+
keywords = ["Redis", "database", "key-value-store"]
2014
classifiers = [
2115
"Development Status :: 5 - Production/Stable",
2216
"Environment :: Console",
@@ -35,9 +29,7 @@ classifiers = [
3529
"Programming Language :: Python :: Implementation :: CPython",
3630
"Programming Language :: Python :: Implementation :: PyPy",
3731
]
38-
dependencies = [
39-
'async-timeout>=4.0.3; python_full_version<"3.11.3"',
40-
]
32+
dependencies = ['async-timeout>=4.0.3; python_full_version<"3.11.3"']
4133

4234
[project.optional-dependencies]
4335
hiredis = [
@@ -63,22 +55,15 @@ Homepage = "https://github.com/redis/redis-py"
6355
path = "redis/__init__.py"
6456

6557
[tool.hatch.build.targets.sdist]
66-
include = [
67-
"/redis",
68-
"/tests",
69-
"dev_requirements.txt",
70-
]
58+
include = ["/redis", "/tests", "dev_requirements.txt"]
7159

7260
[tool.hatch.build.targets.wheel]
73-
include = [
74-
"/redis",
75-
]
61+
include = ["/redis"]
7662

7763
[tool.pytest.ini_options]
7864
addopts = "-s"
7965
markers = [
8066
"redismod: run only the redis module tests",
81-
"graph: run only the redisgraph tests",
8267
"pipeline: pipeline tests",
8368
"onlycluster: marks tests to be run only with cluster mode redis",
8469
"onlynoncluster: marks tests to be run only with standalone redis",
@@ -93,7 +78,6 @@ asyncio_mode = "auto"
9378
timeout = 30
9479
filterwarnings = [
9580
"always",
96-
"ignore:RedisGraph support is deprecated as of Redis Stack 7.2:DeprecationWarning",
9781
# Ignore a coverage warning when COVERAGE_CORE=sysmon for Pythons < 3.12.
9882
"ignore:sys.monitoring isn't available:coverage.exceptions.CoverageWarning",
9983
]
@@ -118,32 +102,23 @@ exclude = [
118102

119103
[tool.ruff.lint]
120104
ignore = [
121-
"E501", # line too long (taken care of with ruff format)
122-
"E741", # ambiguous variable name
123-
"N818", # Errors should have Error suffix
105+
"E501", # line too long (taken care of with ruff format)
106+
"E741", # ambiguous variable name
107+
"N818", # Errors should have Error suffix
124108
]
125109

126-
select = [
127-
"E",
128-
"F",
129-
"FLY",
130-
"I",
131-
"N",
132-
"W",
133-
]
110+
select = ["E", "F", "FLY", "I", "N", "W"]
134111

135112
[tool.ruff.lint.per-file-ignores]
136113
"redis/commands/bf/*" = [
137114
# the `bf` module uses star imports, so this is required there.
138-
"F405", # name may be undefined, or defined from star imports
139-
]
140-
"redis/commands/{bf,timeseries,json,search}/*" = [
141-
"N",
115+
"F405", # name may be undefined, or defined from star imports
142116
]
117+
"redis/commands/{bf,timeseries,json,search}/*" = ["N"]
143118
"tests/*" = [
144-
"I", # TODO: could be enabled, plenty of changes
145-
"N801", # class name should use CapWords convention
146-
"N803", # argument name should be lowercase
147-
"N802", # function name should be lowercase
148-
"N806", # variable name should be lowercase
119+
"I", # TODO: could be enabled, plenty of changes
120+
"N801", # class name should use CapWords convention
121+
"N803", # argument name should be lowercase
122+
"N802", # function name should be lowercase
123+
"N806", # variable name should be lowercase
149124
]

redis/cluster.py

-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ class AbstractRedisCluster:
288288
"TFUNCTION LIST",
289289
"TFCALL",
290290
"TFCALLASYNC",
291-
"GRAPH.CONFIG",
292291
"LATENCY HISTORY",
293292
"LATENCY LATEST",
294293
"LATENCY RESET",

0 commit comments

Comments
 (0)