diff --git a/docs/conf.py b/docs/conf.py index f427f8b..f7efcdb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ # Use mock to make our code think that numpy and scipy are available, even though they might not be available on readthedocs import mock -MOCK_MODULES = ['numpy', 'scipy', "numpy.linalg", "scipy.special", "scipy.stats"] +MOCK_MODULES = ['numpy', 'scipy', 'numpy.linalg', 'scipy.special', 'scipy.stats', 'pymc', 'pint'] for mod_name in MOCK_MODULES: sys.modules[mod_name] = mock.Mock() diff --git a/setup.py b/setup.py index 8773f6c..7b6ceba 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ ########################## -VERSION = "0.2.1" +VERSION = "0.2.0" ISRELEASED = False __version__ = VERSION ########################## @@ -87,7 +87,7 @@ install_requires=[ 'numpy', 'pandas', - #'pymc', # can't install via pip if no fortran compiler + 'pymc', 'matplotlib', 'seaborn', 'lxml',