8000 Use conda on readthedocs by wholmgren · Pull Request #108 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Use conda on readthedocs #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jan 15, 2016
Prev Previous commit
Next Next commit
remove mocks
  • Loading branch information
wholmgren committed Jan 15, 2016
commit 10d1bfe1afc9eece1672322d99c05df844f283a1
3 changes: 1 addition & 2 deletions docs/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return Mock()

MOCK_MODULES = ['scipy', 'scipy.io', 'numpy', 'ephem', 'pandas',
'pvlib.spa_c_files.spa_py', 'dateutil']
MOCK_MODULES = []
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down
0