From 16b59a96bc2bb7f6bc4875dbd362ac134ea5f82a Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 13 Jul 2023 16:15:13 +0000 Subject: [PATCH 1/4] fix: a common typo "the the ". --- google/api_core/page_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/api_core/page_iterator.py b/google/api_core/page_iterator.py index 7ddc5cbc..23761ec4 100644 --- a/google/api_core/page_iterator.py +++ b/google/api_core/page_iterator.py @@ -448,7 +448,7 @@ class _GAXIterator(Iterator): page_iter (google.gax.PageIterator): A GAX page iterator to be wrapped to conform to the :class:`Iterator` interface. item_to_value (Callable[Iterator, Any]): Callable to convert an item - from the the protobuf response into a native object. Will + from the protobuf response into a native object. Will be called with the iterator and a single item. max_results (int): The maximum number of results to fetch. From fb18a476318af2fef65b0e7f219be25c17d75f04 Mon Sep 17 00:00:00 2001 From: bneb Date: Fri, 14 Jul 2023 19:30:43 -0700 Subject: [PATCH 2/4] Update noxfile.py Add myst_parser as an extension to sphinx-build. --- noxfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 748485a7..7d738559 100644 --- a/noxfile.py +++ b/noxfile.py @@ -258,7 +258,8 @@ def docfx(session): "sphinx.ext.napoleon," "sphinx.ext.todo," "sphinx.ext.viewcode," - "recommonmark" + "recommonmark", + "myst_parser" ), "-b", "html", From 332c5ef0f87941c4eb2c3310df74989f805ad589 Mon Sep 17 00:00:00 2001 From: bneb Date: Fri, 14 Jul 2023 19:35:23 -0700 Subject: [PATCH 3/4] Update noxfile.py Add myst-parser to session.install args. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 7d738559..90a98ae0 100644 --- a/noxfile.py +++ b/noxfile.py @@ -240,7 +240,7 @@ def docfx(session): session.install("-e", ".") session.install( - "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml" + "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml", "myst-parser" ) shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) From 47967485ee79d2977b1f07c1f03f2dc7b48f95c2 Mon Sep 17 00:00:00 2001 From: bneb Date: Tue, 18 Jul 2023 16:22:46 -0700 Subject: [PATCH 4/4] Update noxfile.py --- noxfile.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index 90a98ae0..748485a7 100644 --- a/noxfile.py +++ b/noxfile.py @@ -240,7 +240,7 @@ def docfx(session): session.install("-e", ".") session.install( - "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml", "myst-parser" + "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml" ) shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) @@ -258,8 +258,7 @@ def docfx(session): "sphinx.ext.napoleon," "sphinx.ext.todo," "sphinx.ext.viewcode," - "recommonmark", - "myst_parser" + "recommonmark" ), "-b", "html",