Skip to content

Commit 593a5b5

Browse files
committed
v3.2.2
1 parent c2901ca commit 593a5b5

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ either of these with ``sudo``.
7373

7474
## Version History
7575

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+
7681
* [Release ``3.2.1``](https://github.com/CMA-ES/pycma/releases/tag/r3.2.1)
7782
fixes plot of principal axes which were shown squared by mistake in version 3.2.0.
7883

cma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148

149149
# fcts = ff # historical reasons only, replace cma.fcts with cma.ff first
150150

151-
__version__ = "3.2.1"
151+
__version__ = "3.2.2"
152152
# $Source$ # according to PEP 8 style guides, but what is it good for?
153153
# $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $
154154
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
git checkout -- cma
2929
python setup.py check
3030
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
3232
backup --recover # recover above moved folder (and backup current, just in case)
3333
3434
Check distribution and project description:
@@ -71,7 +71,7 @@
7171

7272
setup(name="cma",
7373
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',
7575
version=__version__.split()[0],
7676
description="CMA-ES, Covariance Matrix Adaptation " +
7777
"Evolution Strategy for non-linear numerical " +

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: "3.2.1"
2+
version: "3.2.2"
33
name: 'cma'
44

55
source:

0 commit comments

Comments
 (0)