File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,11 @@ either of these with ``sudo``.
89
89
90
90
# # Version History
91
91
92
+ * [Release ` ` 4.0.0` ` ](https://github.com/CMA-ES/pycma/releases/tag/r4.0.0)
93
+ - majorly improved mixed-integer handling based on a more concise lower bound
94
+ of variances and on so-called integer centering
95
+ - moved options and parameters code into a new file
96
+ - many small-ish fixes and improvements
92
97
* [Release ` ` 3.4.0` ` ](https://github.com/CMA-ES/pycma/releases/tag/r3.4.0)
93
98
- fix compatibility to ` numpy` 2.0 (thanks to [Sait Cakmak](https://github.com/saitcakmak))
94
99
- improved interface to ` noise_handler` argument which accepts ` True` as value
Original file line number Diff line number Diff line change 154
154
155
155
# fcts = ff # historical reasons only, replace cma.fcts with cma.ff first
156
156
157
- __version__ = "3.4 .0"
157
+ __version__ = "4.0 .0"
158
158
# $Source$ # according to PEP 8 style guides, but what is it good for?
159
159
# $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $
160
160
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py
Original file line number Diff line number Diff line change 75
75
# from distutils.core import setup
76
76
from setuptools import setup
77
77
from cma import __version__ # assumes that the right module is visible first in path, i.e., cma folder is in current folder
78
- from cma import __doc__ as long_description
78
+ from cma import __doc__ as long_description # is overwritten below
79
79
80
80
# prevent the error when building Windows .exe
81
81
import codecs
You can’t perform that action at this time.
0 commit comments