-
Notifications
You must be signed in to change notification settings - Fork 990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): upgrade google-cloud-bigquery #12226
chore(deps): upgrade google-cloud-bigquery #12226
Conversation
I also tried pinning back google-cloud-storage to 2.4.0 or earlier, but got the same issue - due to |
8dd62e6
to
49c0c66
Compare
This feels like a moving target, since now the deps check fails on |
:-/ |
49c0c66
to
2b06f06
Compare
Remove version constraint and include the new dependencies of numpy and pyarrow. Corrects current broken state where the combination of dependencies prevents resolution. Increases overall image size by ~100MB to include these dependencies Signed-off-by: Mike Fiedler <[email protected]>
Refs: python/mypy#10360 Signed-off-by: Mike Fiedler <[email protected]>
Signed-off-by: Mike Fiedler <[email protected]>
Signed-off-by: Mike Fiedler <[email protected]>
2b06f06
to
69d760f
Compare
@alex appreciate the commiseration 😀 What's confusing at this juncture is that the depchecker result is showing: |
The depchecker takes into account the current latest state of all dependencies, so if there's a new version of some existing dependency on PyPI that introduces a new subdependency, it will cause a failure here. In this case, it looks like the latest |
Bumps [pyjwt[crypto]](https://github.com/jpadilla/pyjwt) from 2.4.0 to 2.5.0. - [Release notes](https://github.com/jpadilla/pyjwt/releases) - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) - [Commits](jpadilla/pyjwt@2.4.0...2.5.0) --- updated-dependencies: - dependency-name: pyjwt[crypto] dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
(or, cherry-pick it here because it seems like we need both) |
Thanks for solving, @di! |
Remove version constraint and include the new dependencies of numpy and pyarrow.
Corrects current broken state where the combination of dependencies prevents resolution, thanks to
google-cloud-bigquery
pinning to protobf under 4.Increases overall image size by ~100MB to include these dependencies.
If we can accept this tradeoff until googleapis/python-bigquery#1196 is resolved, then we can have fewer dependency conflicts during updates.
Closes #12234.