Skip to content

Commit 1d55d53

Browse files
authored
chore: release 1.5.0 (#60)
* chore: release 1.5.0 * chore: release 1.5.0 Update docs and changelog.
1 parent 227e99d commit 1d55d53

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

docs/requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ipython
22
matplotlib
33
numpydoc
4-
sphinx
4+
sphinx==4.0.2
55
sphinx_rtd_theme

docs/source/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
.. _changelog-1.5.0:
5+
6+
1.5.0 / (2023-01-09)
7+
--------------------
8+
9+
- Adds ability to provide redirect uri. (:issue:`58`)
10+
411
.. _changelog-1.4.0:
512

613
1.4.0 / (2022-03-14)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
#
8080
# This is also used if you do content translation via gettext catalogs.
8181
# Usually you set "language" from the command line for these cases.
82-
language = None
82+
language = "en"
8383

8484
# There are two options for replacing |today|: either, you set today to some
8585
# non-false value, then it is used:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def cover(session):
191191
def docs(session):
192192
"""Build the docs for this library."""
193193

194-
session.install("sphinx", "sphinx_rtd_theme", "ipython")
194+
session.install("sphinx==4.0.2", "sphinx_rtd_theme", "ipython")
195195
session.install("-e", ".")
196196

197197
shutil.rmtree(os.path.join("docs", "source", "_build"), ignore_errors=True)

pydata_google_auth/auth.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ def default(
102102
Use the ``use_local_webserver`` parameter instead.
103103
redirect_uri : str, optional
104104
Redirect URIs are endpoints to which the OAuth 2.0 server can send
105-
responses. They may be used in situations such as:
105+
responses. They may be used in situations such as
106+
106107
* an organization has an org specific authentication endpoint
107108
* an organization can not use an endpoint directly because of
108109
constraints on access to the internet (i.e. when running code on a
@@ -254,11 +255,13 @@ def get_user_credentials(
254255
Use the ``use_local_webserver`` parameter instead.
255256
redirect_uri : str, optional
256257
Redirect URIs are endpoints to which the OAuth 2.0 server can send
257-
responses. They may be used in situations such as:
258+
responses. They may be used in situations such as
259+
258260
* an organization has an org specific authentication endpoint
259261
* an organization can not use an endpoint directly because of
260262
constraints on access to the internet (i.e. when running code on a
261263
remotely hosted device).
264+
262265
Returns
263266
-------
264267
credentials : google.oauth2.credentials.Credentials

0 commit comments

Comments
 (0)