Skip to content

Commit 98a40ca

Browse files
committed
python 3.8
1 parent 83056f4 commit 98a40ca

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2.1
66
jobs:
77
build:
88
docker:
9-
- image: circleci/python:3.6.1
9+
- image: circleci/python:3.8.5
1010

1111
- image: redislabs/redisgraph:edge
1212

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
33

44
.coverage
5+
.vscode
56

67
# User-specific stuff
78
.idea/**/workspace.xml

redisgraph_bulk_loader/bulk_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async def bulk_insert(graph, host, port, password, user, unix_socket_path, nodes
9393
else:
9494
client = await aioredis.from_url(f"redis://{host}:{port}", username=user, password=password)
9595
except aioredis.exceptions.ConnectionError as e:
96-
print("Could not connect to Redis ser`ver.")
96+
print("Could not connect to Redis server.")
9797
raise e
9898

9999
# Attempt to verify that RedisGraph module is loaded

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
asyncclick
2+
click
3+
anyio
24
aioredis==2.0.0a1
35
redis>=3.5.3
46
redisgraph

0 commit comments

Comments
 (0)