Skip to content

Commit

Permalink
v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmschrei committed Oct 28, 2017
1 parent e9bd4cf commit 65300e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pomegranate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .BayesianNetwork import BayesianNetwork
from .FactorGraph import FactorGraph

__version__ = '0.8.dev1'
__version__ = '0.8.1'

os.environ['OMP_NUM_THREADS'] = '1'
os.environ['MKL_NUM_THREADS'] = '1'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def finalize_options(self):

setup(
name='pomegranate',
version='0.8.dev1',
version='0.8.1',
author='Jacob Schreiber',
author_email='jmschreiber91@gmail.com',
packages=['pomegranate'],
Expand All @@ -60,7 +60,7 @@ def finalize_options(self):
install_requires=[
"numpy >= 1.8.0",
"joblib >= 0.9.0b4",
"networkx >= 1.8.1",
"networkx >= 1.8.1, < 2.0",
"scipy >= 0.17.0"
],
test_suite = 'nose.collector',
Expand Down

0 comments on commit 65300e5

Please sign in to comment.