Skip to content

Commit

Permalink
Merge pull request #6 from pnnl/hotfix/hyp-38
Browse files Browse the repository at this point in the history
Hotfix/hyp 38
  • Loading branch information
brendapraggastis authored Feb 20, 2019
2 parents 13fda3d + 2577c75 commit a4c5b0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions hypernetx/drawing/rubber_band.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ def draw(H,
color=edges_kwargs['edgecolors'],
backgroundcolor=(1, 1, 1, label_alpha),
labels=labels,
ax=ax,
**edge_labels_kwargs
)

Expand Down Expand Up @@ -468,6 +469,6 @@ def draw(H,
else:
ax.axis('equal')

plt.xticks([])
plt.yticks([])
ax.xaxis.set_ticks([])
ax.yaxis.set_ticks([])

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import sys, os.path

__version__ = '0.2.1'
__version__ = '0.2.2'

if sys.version_info < (3,6):
sys.exit('HyperNetX requires Python 3.6 or later.')
Expand Down

0 comments on commit a4c5b0e

Please sign in to comment.