Skip to content
This repository was archived by the owner on May 6, 2026. It is now read-only.

Commit 9288fd7

Browse files
committed
fix(deps): allow redis 6.x
1 parent 7f1f516 commit 9288fd7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ def main():
4040
with io.open(readme_filename, encoding="utf-8") as readme_file:
4141
readme = readme_file.read()
4242
dependencies = [
43-
"google-api-core[grpc] >= 1.34.0, <3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
43+
"google-api-core[grpc] >= 1.34.0, < 3.0.0,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
4444
"google-cloud-datastore >= 2.16.0, != 2.20.2, < 3.0.0",
45-
"protobuf >= 3.20.2, <7.0.0,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
45+
"protobuf >= 3.20.2, < 7.0.0,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
4646
"pymemcache >= 2.1.0, < 5.0.0",
4747
"pytz >= 2018.3",
48-
"redis >= 3.0.0, < 6.0.0",
48+
"redis >= 3.0.0, < 7.0.0",
4949
]
5050

5151
setuptools.setup(

0 commit comments

Comments
 (0)