Skip to content

Commit

Permalink
Fix dependency version problem in setup.py
Browse files Browse the repository at this point in the history
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. google#746
  • Loading branch information
krithin authored Oct 11, 2021
1 parent 964f07f commit 0e8ade2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 0e8ade2

Please sign in to comment.