Skip to content

Commit 5002822

Browse files
committed
Added shebang on the pyevolve_graph.py;
changed from RC1 to 0.6 final version.
1 parent 5f0342b commit 5002822

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = '0.6'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '0.6rc1'
66+
release = '0.6 final'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

pyevolve/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Migration", "Mutators", "Network", "Scaling", "Selectors",
1717
"Statistics", "Util"]
1818

19-
__version__ = '0.6rc1'
19+
__version__ = '0.6'
2020
__author__ = 'Christian S. Perone'
2121

2222
import pyevolve.Consts

pyevolve_graph.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
#!/usr/bin/python
2+
13
# This code is part of Pyevolve.
2-
# Require matplotlib v.0.98.5.0+
4+
# It requires matplotlib v.0.98.5.0+
35
from optparse import OptionParser
46
from optparse import OptionGroup
57

6-
78
def graph_pop_heatmap_raw(all, minimize, colormap="jet", filesave=None):
89
pylab.imshow(all, aspect="auto", interpolation="gaussian", cmap=matplotlib.cm.__dict__[colormap])
910
pylab.title("Plot of pop. raw scores along the generations")

0 commit comments

Comments
 (0)