Skip to content

Commit

Permalink
Merge pull request #81 from pnnl/hotfix/1.2.2
Browse files Browse the repository at this point in the history
Hotfix/1.2.2
  • Loading branch information
noah-farris authored Dec 21, 2021
2 parents f5c030b + c0f858c commit 53203cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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.")
Expand Down Expand Up @@ -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="""
Expand Down Expand Up @@ -73,16 +75,14 @@
""",
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",
"nb2plots>=0.6",
"sphinx-rtd-theme>=0.4.2",
"pytest>=4.0",
"jupyter>=1.0",
"python-igraph>=0.9.6",
"celluloid>=0.2.0",
],
},
)

0 comments on commit 53203cc

Please sign in to comment.