Skip to content

Commit 78cd442

Browse files
committed
fixes 5
1 parent 51c7779 commit 78cd442

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
key: "tool.poetry.version"
2727
value: "${{ steps.get_version.outputs.VERSION }}"
2828

29-
- name: Set up Python 3.8
29+
- name: Set up Python 3.9
3030
uses: actions/setup-python@v3
3131
with:
32-
python-version: 3.8
32+
python-version: 3.9
3333

3434
- name: Install Poetry
3535
uses: dschep/[email protected]

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisgraph-bulk-loader"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
description = "RedisGraph Bulk Import Tool"
55
authors = ["Redis Inc <[email protected]>"]
66
license = "BSD-3-Clause"
@@ -32,7 +32,8 @@ repository = "https://github.com/RedisGraph/redisgraph-bulk-loader"
3232
[tool.poetry.dependencies]
3333
python = ">= 3.7.0"
3434
click = "^8.0.1"
35-
redis = "^4.5.1"
35+
# redis = "^4.5.1"
36+
redis = "^4.3.4"
3637
pathos = "^0.2.8"
3738

3839
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)