From 0e8ade2f7233d74cd67509d0bb388b1106b826ad Mon Sep 17 00:00:00 2001 From: Krithin Sitaram Date: Sun, 10 Oct 2021 22:42:12 -0700 Subject: [PATCH] Fix dependency version problem in setup.py When trying to install this package I got an error informing me that `google-assistant-library 1.1.0 has requirement google-auth<2,>=1.0.1, but you'll have google-auth 2.3.0 which is incompatible`. Removing the top-level dependency on the google-auth package lets google-assistant-library's transitive deps bring in a working version of google-auth. cf. https://github.com/google/aiyprojects-raspbian/issues/746 --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 29d6e571..389f17d1 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,6 @@ install_requires=[ 'google-assistant-library>=1.0.1', 'google-assistant-grpc>=0.2.0', - 'google-auth>=1.5.1', 'google-auth-oauthlib>=0.2.0', 'google-cloud-speech>=0.36.0', 'gpiozero',