Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Fix dependency version problem in setup.py #747

Open
wants to merge 1 commit into
base: aiyprojects
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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. #746
  • Loading branch information
krithin authored Oct 11, 2021

Verified

This commit was signed with the committer’s verified signature.
adityasingh-anyline Aditya Singh
commit 0e8ade2f7233d74cd67509d0bb388b1106b826ad
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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',