It looks like #9572 introduced a dependency conflict for google-resumable-media between the latest google-cloud-storage and google-cloud-bigquery releases.
Environment details
- Python 3.7
Steps to reproduce
pip install google-cloud-storage (latest release is 1.23.0)
2.pip install google-cloud-bigquery (latest release is 1.21.0)
- Try to import both libraries in the same python
Issue
Today, google-cloud-storage 1.23.0 was released. It depends on google-resumable-media >= 0.5.0, < 0.6dev. The current google-cloud-bigquery version, depends on google-resumable-media >= 0.3.1, != 0.4.0, < 0.5.0dev
Therefore, the setup.py files for these two libraries will 2nd level dependency conflict when you attempt to pip install.
This can be fixed by releasing a new google-cloud-bigquery version. (to pick up the changes in #9572)
It looks like #9572 introduced a dependency conflict for
google-resumable-mediabetween the latestgoogle-cloud-storageandgoogle-cloud-bigqueryreleases.Environment details
Steps to reproduce
pip install google-cloud-storage(latest release is1.23.0)2.
pip install google-cloud-bigquery(latest release is1.21.0)Issue
Today,
google-cloud-storage 1.23.0was released. It depends ongoogle-resumable-media >= 0.5.0, < 0.6dev. The currentgoogle-cloud-bigqueryversion, depends ongoogle-resumable-media >= 0.3.1, != 0.4.0, < 0.5.0devTherefore, the
setup.pyfiles for these two libraries will 2nd level dependency conflict when you attempt topip install.This can be fixed by releasing a new
google-cloud-bigqueryversion. (to pick up the changes in #9572)