From 3b1ffb7e5cabdadfe2a4be6802adef774eec5ef8 Mon Sep 17 00:00:00 2001 From: "Bob \"Wombat\" Hogg" Date: Fri, 15 Sep 2023 14:20:26 -0400 Subject: [PATCH] fix(deps): Add missing six dependency (#912) --- setup.py | 4 +++- testing/constraints-3.7.txt | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7590ee75..0eda9383 100644 --- a/setup.py +++ b/setup.py @@ -28,8 +28,10 @@ def main(): "google-cloud-datastore >= 2.16.0, < 3.0.0dev", "protobuf >= 3.19.5, <5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5", "pymemcache >= 2.1.0, < 5.0.0dev", + "pytz >= 2018.3", "redis >= 3.0.0, < 5.0.0dev", - "pytz >= 2018.3" + # TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase + "six >= 1.12.0, < 2.0.0dev" ] setuptools.setup( diff --git a/testing/constraints-3.7.txt b/testing/constraints-3.7.txt index ef05b87c..edb99006 100644 --- a/testing/constraints-3.7.txt +++ b/testing/constraints-3.7.txt @@ -11,3 +11,5 @@ protobuf==3.19.5 pymemcache==2.1.0 redis==3.0.0 pytz==2018.3 +# TODO(https://github.com/googleapis/python-ndb/issues/913) remove this dependency once six is no longer used in the codebase +six==1.12.0