Skip to content

Commit

Permalink
chore: release 1.5.0 (#60)
Browse files Browse the repository at this point in the history
* chore: release 1.5.0

* chore: release 1.5.0

Update docs and changelog.
  • Loading branch information
tswast authored Jan 9, 2023
1 parent 227e99d commit 1d55d53
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ipython
matplotlib
numpydoc
sphinx
sphinx==4.0.2
sphinx_rtd_theme
7 changes: 7 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

.. _changelog-1.5.0:

1.5.0 / (2023-01-09)
--------------------

- Adds ability to provide redirect uri. (:issue:`58`)

.. _changelog-1.4.0:

1.4.0 / (2022-03-14)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def cover(session):
def docs(session):
"""Build the docs for this library."""

session.install("sphinx", "sphinx_rtd_theme", "ipython")
session.install("sphinx==4.0.2", "sphinx_rtd_theme", "ipython")
session.install("-e", ".")

shutil.rmtree(os.path.join("docs", "source", "_build"), ignore_errors=True)
Expand Down
7 changes: 5 additions & 2 deletions pydata_google_auth/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ def default(
Use the ``use_local_webserver`` parameter instead.
redirect_uri : str, optional
Redirect URIs are endpoints to which the OAuth 2.0 server can send
responses. They may be used in situations such as:
responses. They may be used in situations such as
* an organization has an org specific authentication endpoint
* an organization can not use an endpoint directly because of
constraints on access to the internet (i.e. when running code on a
Expand Down Expand Up @@ -254,11 +255,13 @@ def get_user_credentials(
Use the ``use_local_webserver`` parameter instead.
redirect_uri : str, optional
Redirect URIs are endpoints to which the OAuth 2.0 server can send
responses. They may be used in situations such as:
responses. They may be used in situations such as
* an organization has an org specific authentication endpoint
* an organization can not use an endpoint directly because of
constraints on access to the internet (i.e. when running code on a
remotely hosted device).
Returns
-------
credentials : google.oauth2.credentials.Credentials
Expand Down

0 comments on commit 1d55d53

Please sign in to comment.