Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ libraries:
issue_tracker_override: https://github.com/googleapis/google-cloud-python/issues
- name: google-auth-oauthlib
version: 1.3.1
skip_generate: true
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The migration to librarian has resulted in the removal of the codeowner_team field from the generated .repo-metadata.json. This field is important for GitHub automation and ensuring the correct team is notified of changes. Please add the codeowner_team to the library configuration in librarian.yaml.

    codeowner_team: "@googleapis/googleapis-auth"

python:
library_type: AUTH
name_pretty_override: Google Auth OAuthlib
Expand Down
14 changes: 6 additions & 8 deletions packages/google-auth-oauthlib/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "google-auth-oauthlib",
"name_pretty": "Google Auth OAuthlib",
"client_documentation": "https://googleapis.dev/python/google-auth-oauthlib/latest",
"distribution_name": "google-auth-oauthlib",
"issue_tracker": "https://github.com/googleapis/google-cloud-python/issues",
"release_level": "stable",
"language": "python",
"library_type": "AUTH",
"repo": "googleapis/google-cloud-python",
"distribution_name": "google-auth-oauthlib",
"default_version": "",
"codeowner_team": "@googleapis/googleapis-auth"
}
"name": "google-auth-oauthlib",
"name_pretty": "Google Auth OAuthlib",
"release_level": "stable",
"repo": "googleapis/google-cloud-python"
}
2 changes: 1 addition & 1 deletion packages/google-auth-oauthlib/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
import shlex
import sys

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
from secrets import SystemRandom
except ImportError: # pragma: NO COVER
from random import SystemRandom

from string import ascii_letters, digits
import webbrowser
import wsgiref.simple_server
Expand All @@ -67,7 +68,6 @@

import google_auth_oauthlib.helpers


_LOGGER = logging.getLogger(__name__)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import google_auth_oauthlib.flow


LOCALHOST = "localhost"
DEFAULT_PORTS_TO_TRY = 100

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

import google_auth_oauthlib.flow


APP_NAME = "google-oauthlib-tool"
DEFAULT_CREDENTIALS_FILENAME = "credentials.json"

Expand Down
4 changes: 1 addition & 3 deletions packages/google-auth-oauthlib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@

import io

from setuptools import find_namespace_packages
from setuptools import setup

from setuptools import find_namespace_packages, setup

TOOL_DEPENDENCIES = "click>=6.0.0"

Expand Down
4 changes: 2 additions & 2 deletions packages/google-auth-oauthlib/tests/unit/test_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
import re
import socket
from unittest import mock
import urllib
import webbrowser

import pytest
import requests
import urllib
import webbrowser

from google_auth_oauthlib import flow

Expand Down
4 changes: 2 additions & 2 deletions packages/google-auth-oauthlib/tests/unit/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import os
from unittest import mock

import pytest

from google.auth import external_account_authorized_user
import google.oauth2.credentials
import pytest

from google_auth_oauthlib import helpers

DATA_DIR = os.path.join(os.path.dirname(__file__), "data")
Expand Down
Loading