diff --git a/docs/source/conf.py b/docs/source/conf.py index 530c9eec..b9b5a418 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,7 +19,7 @@ import os import shlex -__version__ = "1.2.1" +__version__ = "1.2.2" # If extensions (or modules to document with autodoc) are in another directory, diff --git a/setup.py b/setup.py index 8e47ab45..ceef016a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup import sys -__version__ = "1.2.1" +__version__ = "1.2.2" if sys.version_info < (3, 7): sys.exit("HyperNetX requires Python 3.7 or later.") @@ -30,6 +30,8 @@ "matplotlib>3.0", "scikit-learn>=0.20.0", "pandas>=0.23", + "python-igraph>=0.9.6", + "celluloid>=0.2.0", ], license="3-Clause BSD license", long_description=""" @@ -73,7 +75,7 @@ """, extras_require={ "testing": ["pytest>=4.0"], - "tutorials": ["jupyter>=1.0", "python-igraph>=0.9.6", "celluloid>=0.2.0", ], + "tutorials": ["jupyter>=1.0", ], "documentation": ["sphinx>=1.8.2", "nb2plots>=0.6", "sphinx-rtd-theme>=0.4.2"], "all": [ "sphinx>=1.8.2", @@ -81,8 +83,6 @@ "sphinx-rtd-theme>=0.4.2", "pytest>=4.0", "jupyter>=1.0", - "python-igraph>=0.9.6", - "celluloid>=0.2.0", ], }, )