You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is currently not possible to install dbt-bigquery 1.3.0 from scratch, as shown here.
I start with an empty virtual environment:
~/tmp % venv/bin/pip list
Package Version
---------- -------
pip 22.3
setuptools 65.5.0
wheel 0.37.1
And then I try to install dbt-bigquery 1.3.0:
~/tmp % venv/bin/pip install dbt-bigquery==1.3.0
[...]
ERROR: Cannot install dbt-bigquery and dbt-bigquery==1.3.0 because these package versions have conflicting dependencies.
The conflict is caused by:
dbt-bigquery 1.3.0 depends on google-cloud-core<3 and >=1.3.0
google-cloud-bigquery 1.25.0 depends on google-cloud-core<2.0dev and >=1.1.0
google-cloud-storage 2.5.0 depends on google-cloud-core<3.0dev and >=2.3.0
dbt-bigquery 1.3.0 depends on google-cloud-core<3 and >=1.3.0
google-cloud-bigquery 1.25.0 depends on google-cloud-core<2.0dev and >=1.1.0
google-cloud-storage 2.4.0 depends on google-cloud-core<3.0dev and >=2.3.0
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
Installing the latest version from Git also doesn't work, it fails with:
ERROR: No matching distribution found for dbt-core~=1.4.0a1
I think #332 should fix the problem with installing version 1.3.0, but since it's not available in a released version of the library, it doesn't help much.
Any chance the fix in that PR could be backported to the 1.3.latest branch, and a 1.3.1 version could be released?
Alternatively, any idea when version 1.4.0 might be out?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
It is currently not possible to install dbt-bigquery 1.3.0 from scratch, as shown here.
I start with an empty virtual environment:
And then I try to install dbt-bigquery 1.3.0:
Installing the latest version from Git also doesn't work, it fails with:
I think #332 should fix the problem with installing version 1.3.0, but since it's not available in a released version of the library, it doesn't help much.
Any chance the fix in that PR could be backported to the
1.3.latest
branch, and a 1.3.1 version could be released?Alternatively, any idea when version 1.4.0 might be out?
Beta Was this translation helpful? Give feedback.
All reactions