Skip to content

Commit

Permalink
Install all required packages during docs building
Browse files Browse the repository at this point in the history
  • Loading branch information
psss committed Dec 8, 2021
1 parent e5995ff commit 2abe1d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ python:
install:
- method: pip
path: .
extra_requirements: [docs]
extra_requirements: [docs, google]
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
dependency
for extra in extras_require.values()
for dependency in extra]
# Extra requires for documentation building on readthedocs
# (exclude those which need extra system packages installed)
extras_require['docs-build'] = list(
set(extras_require['all'])
- set(('gssapi', 'requests_gssapi', 'bugzilla', 'bodhi',
'feedparser')))

# Prepare the long description from readme
with open('README.rst') as readme:
Expand Down

0 comments on commit 2abe1d0

Please sign in to comment.