From 02c98bc9c6af3f688fc227a408a537555b1f626e Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Fri, 15 Sep 2023 12:35:03 -0700 Subject: [PATCH] circle: install six https://github.com/googleapis/python-ndb/issues/911 https://github.com/googleapis/python-ndb/issues/913 --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c3c3db..361918e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,9 @@ jobs: command: | pip install -U pip pip -V - pip install -U .[datastore,flask,tests] 'typing-extensions<4.6.0' 'git+https://github.com/snarfed/carbox.git#egg=carbox' 'git+https://github.com/snarfed/lexrpc.git#egg=lexrpc' + # TODO: remove six + # https://github.com/googleapis/python-ndb/issues/913 + pip install -U .[datastore,flask,tests] six 'typing-extensions<4.6.0' 'git+https://github.com/snarfed/carbox.git#egg=carbox' 'git+https://github.com/snarfed/lexrpc.git#egg=lexrpc' pip install coverage coveralls flake8 - run: