Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation for features / changes
A patch release that bumps our restriction on the
google-auth-oauthlib
dependency to be compatible with newer versions. Now that we removed the deprecated OOB auth flow (Implements limited-input device auth flow, to replace deprecated OOB auth flow. #6107), we can use a newer version of the library where that flow is removed, and TB will be compatible with more libraries that have similar restrictions for a more recent version of the auth library.Technical description of changes
>= 0.4.1, < 0.5
to>= 0.5, < 1.1
. (Bumps google-auth-oauthlib dependency restriction to support up to version 1.0 #6246).Detailed steps to verify changes work correctly (as executed by you)
Revoked saved credentials by calling
tensorboard dev auth revoke
, and then uploaded a new experiment to TB.dev, which required me to go through the auth flow. Then I repeated the same process with the flag--auth_force_console
to test the "console" (limited-input device) auth flow. Both auth flows worked as expected, and I was able to upload data for those experiments.