Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit ef1b598

Browse files
1 parent add9c77 commit ef1b598

3 files changed

Lines changed: 14 additions & 23 deletions

File tree

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v6
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.10"
1616
- name: Install nox
@@ -24,9 +24,9 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v4
2828
- name: Setup Python
29-
uses: actions/setup-python@v6
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: "3.10"
3232
- name: Install nox

docs/index.rst

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,24 @@
33
.. include:: multiprocessing.rst
44

55

6-
API Documentation
7-
-----------------
8-
9-
.. note::
10-
11-
The client library version (currently ``2.x``) should not be confused with the
12-
backend API version (currently ``v1``), hence some references to ``v1`` can be found
13-
across the documentation.
14-
6+
API Reference
7+
-------------
158
.. toctree::
16-
:maxdepth: 4
9+
:maxdepth: 2
1710

18-
Publisher Client <pubsub/publisher/index>
19-
Subscriber Client <pubsub/subscriber/index>
20-
Types <pubsub/types>
11+
pubsub_v1/services_
12+
pubsub_v1/types_
2113

2214

2315
Migration Guide
2416
---------------
2517

26-
See the guide below for instructions on migrating to the 2.x release of this library.
18+
See the guide below for instructions on migrating to the latest version.
2719

2820
.. toctree::
2921
:maxdepth: 2
3022

31-
UPGRADING
23+
 UPGRADING
3224

3325

3426
Changelog
@@ -37,10 +29,9 @@ Changelog
3729
For a list of all ``google-cloud-pubsub`` releases:
3830

3931
.. toctree::
40-
:maxdepth: 2
41-
42-
changelog
32+
:maxdepth: 2
4333

34+
changelog
4435

4536
.. toctree::
4637
:hidden:

samples/snippets/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def lint(session: nox.sessions.Session) -> None:
147147
#
148148

149149

150-
@nox.session(python="3.10")
150+
@nox.session
151151
def blacken(session: nox.sessions.Session) -> None:
152152
"""Run black. Format code to uniform standard."""
153153
session.install(BLACK_VERSION)

0 commit comments

Comments
 (0)