Skip to content

Commit 6323f6d

Browse files
committed
Dropping umbrella package from nox docs sessions.
Follow up to googleapis#3828.
1 parent 75f0a09 commit 6323f6d

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
# built documents.
7171
#
7272
# The short X.Y version.
73-
distro = pkg_resources.get_distribution('google-cloud')
73+
distro = pkg_resources.get_distribution('google-cloud-core')
7474
release = os.getenv('SPHINX_RELEASE', distro.version)
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation

nox.py

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,25 @@ def docs(session):
3030
# Install Sphinx and also all of the google-cloud-* packages.
3131
session.chdir(os.path.realpath(os.path.dirname(__file__)))
3232
session.install('Sphinx >= 1.6.2', 'sphinx_rtd_theme')
33-
session.install('.')
3433
session.install(
35-
'core/', 'storage/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/',
36-
'language/', 'logging/', 'error_reporting/', 'monitoring/', 'pubsub/',
37-
'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/',
38-
'trace/', 'translate/', 'vision/',
34+
'core/',
35+
'storage/',
36+
'bigquery/',
37+
'bigtable/',
38+
'datastore/',
39+
'dns/',
40+
'language/',
41+
'logging/',
42+
'error_reporting/',
43+
'monitoring/',
44+
'pubsub/',
45+
'resource_manager/',
46+
'runtimeconfig/',
47+
'spanner/',
48+
'speech/',
49+
'trace/',
50+
'translate/',
51+
'vision/',
3952
)
4053

4154
# Build the docs!

0 commit comments

Comments
 (0)