Skip to content

Commit

Permalink
Update mock packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jchodera committed Dec 31, 2016
1 parent 330f190 commit d146e9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


##########################
VERSION = "0.2.1"
VERSION = "0.2.0"
ISRELEASED = False
__version__ = VERSION
##########################
Expand Down Expand Up @@ -87,7 +87,7 @@
install_requires=[
'numpy',
'pandas',
#'pymc', # can't install via pip if no fortran compiler
'pymc',
'matplotlib',
'seaborn',
'lxml',
Expand Down

0 comments on commit d146e9c

Please sign in to comment.