Skip to content

Commit

Permalink
Upgrade version (#85)
Browse files Browse the repository at this point in the history
* Fix typo

* Upgrade version
  • Loading branch information
martinateruzzi authored May 26, 2021
1 parent adecfb0 commit f1154c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion grape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_current_year():
__author__ = "Aurora Maurizio, Martina Teruzzi, Nicola Demo"
__copyright__ = "Copyright 2019-{}, GRAPE contributors".format(get_current_year())
__license__ = "MIT"
__version__ = "1.1.0"
__version__ = "1.2.0"
__mail__ = 'auroramaurizio1@gmail.com, teruzzi.martina@gmail.com, demo.nicola@gmail.com'
__maintainer__ = __author__
__status__ = "Alpha"
Expand Down
6 changes: 3 additions & 3 deletions grape/general_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1233,8 +1233,8 @@ def compute_service(self):

def print_graph(self, radius=None, initial_pos=None, fixed_nodes=None,
n_iter=500, thresh=0.0001, size=800, border='black', edge_width=1.0,
arrow_size=10, fsize=12, fcolor='k', family='sans-serif', title='Graph',
input_cmap=None, legend_loc='upper right', legend_ncol=1,
arrow_size=10, fsize=12, fcolor='k', ffamily='sans-serif',
title='Graph', input_cmap=None, legend_loc='upper right', legend_ncol=1,
legend_anchor=None, legend_fsize=12, save_to_file=None):
"""
Expand Down Expand Up @@ -1267,7 +1267,7 @@ def print_graph(self, radius=None, initial_pos=None, fixed_nodes=None,
:type fixed_nodes: list, optional, default to None
:param n_iter: maximum number of iterations taken in spring layout
simulation.
:type iter: int, optional, default to 500
:type n_iter: int, optional, default to 500
:param thresh: threshold for relative error in node position changes.
The iteration stops if the error is below this threshold.
:type thresh: float, optional, default to 0.0001
Expand Down

0 comments on commit f1154c8

Please sign in to comment.