Skip to content

Commit 3abf690

Browse files
committed
version 2.7.0
new logger module where the logger code moved output writes in a folder by default matplotlib 3 compatibility improved semilogy_signed new fitness_models module new provisorial stand-alone Logger class
1 parent 013fad4 commit 3abf690

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ either of these with ``sudo``.
6666

6767
## Version History
6868

69+
* Version ``2.7.0`` logger now writes into a folder, new fitness model module, various fixes
70+
6971
* Version ``2.6.1`` allow possibly much larger condition numbers, fix corner case with growing more-to-write list.
7072

7173
* Version ``2.6.0`` allows initial solution `x0` to be a callable.

cma/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@
8989
9090
:See also: `fmin` (), `CMAOptions`, `CMAEvolutionStrategy`
9191
92-
:Author: Nikolaus Hansen, 2008-2017
92+
:Author: Nikolaus Hansen, 2008-
9393
:Author: Petr Baudis, 2014
94-
:Author: Youhei Akimoto, 2017
94+
:Author: Youhei Akimoto, 2017-
9595
9696
:License: BSD 3-Clause, see LICENSE file.
9797
@@ -144,7 +144,7 @@
144144
# fcts = ff # historical reasons only, replace cma.fcts with cma.ff first
145145

146146
__author__ = 'Nikolaus Hansen'
147-
__version__ = "2.6.1 $Revision: 4424 $ $Date: 2018-11-18 20:02:58 +0100 (Sun, 18 Nov 2018) $"
147+
__version__ = "2.7.0 $Revision: 4426 $ $Date: 2019-04-24 18:03:09 +0200 (Wed, 24 Apr 2019) $"
148148
# $Source$ # according to PEP 8 style guides, but what is it good for?
149-
# $Id: __init__.py 4424 2018-11-18 19:02:58Z hansen $
149+
# $Id: __init__.py 4426 2019-04-24 16:03:09Z hansen $
150150
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py

tools/conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package:
2-
version: "2.5.3"
2+
version: "2.7.0"
33
name: 'cma'
44

55
source:

0 commit comments

Comments
 (0)