File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,11 @@ either of these with ``sudo``.
73
73
74
74
## Version History
75
75
76
+ * [ Release `` 3.2.2 `` ] ( https://github.com/CMA-ES/pycma/releases/tag/r3.2.2 )
77
+ fixes some smallish interface and logging bugs in ` ConstrainedFitnessAL `
78
+ and a bug when printing a warning. Polishing mainly in the plotting
79
+ functions. Added a notebook for how to use constraints.
80
+
76
81
* [ Release `` 3.2.1 `` ] ( https://github.com/CMA-ES/pycma/releases/tag/r3.2.1 )
77
82
fixes plot of principal axes which were shown squared by mistake in version 3.2.0.
78
83
Original file line number Diff line number Diff line change 148
148
149
149
# fcts = ff # historical reasons only, replace cma.fcts with cma.ff first
150
150
151
- __version__ = "3.2.1 "
151
+ __version__ = "3.2.2 "
152
152
# $Source$ # according to PEP 8 style guides, but what is it good for?
153
153
# $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $
154
154
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py
Original file line number Diff line number Diff line change 28
28
git checkout -- cma
29
29
python setup.py check
30
30
python setup.py sdist bdist_wheel --universal > dist_call_output.txt ; less dist_call_output.txt # bdist_wininst
31
- # twdiff cma build/lib/cma/ # just checking
31
+ # bbdiff cma build/lib/cma/ # just checking
32
32
backup --recover # recover above moved folder (and backup current, just in case)
33
33
34
34
Check distribution and project description:
71
71
72
72
setup (name = "cma" ,
73
73
long_description = long_description , # __doc__, # can be used in the cma.py file
74
- # long_description_content_type = 'text/x-rst', # 'text/markdown',
74
+ long_description_content_type = 'text/x-rst' , # 'text/markdown',
75
75
version = __version__ .split ()[0 ],
76
76
description = "CMA-ES, Covariance Matrix Adaptation " +
77
77
"Evolution Strategy for non-linear numerical " +
Original file line number Diff line number Diff line change 1
1
package :
2
- version : " 3.2.1 "
2
+ version : " 3.2.2 "
3
3
name : ' cma'
4
4
5
5
source :
You can’t perform that action at this time.
0 commit comments