Skip to content

Commit

Permalink
v3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nikohansen committed Mar 19, 2022
1 parent c2901ca commit 593a5b5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ either of these with ``sudo``.

## Version History

* [Release ``3.2.2``](https://github.com/CMA-ES/pycma/releases/tag/r3.2.2)
fixes some smallish interface and logging bugs in `ConstrainedFitnessAL`
and a bug when printing a warning. Polishing mainly in the plotting
functions. Added a notebook for how to use constraints.

* [Release ``3.2.1``](https://github.com/CMA-ES/pycma/releases/tag/r3.2.1)
fixes plot of principal axes which were shown squared by mistake in version 3.2.0.

Expand Down
2 changes: 1 addition & 1 deletion cma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@

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

__version__ = "3.2.1"
__version__ = "3.2.2"
# $Source$ # according to PEP 8 style guides, but what is it good for?
# $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
git checkout -- cma
python setup.py check
python setup.py sdist bdist_wheel --universal > dist_call_output.txt ; less dist_call_output.txt # bdist_wininst
# twdiff cma build/lib/cma/ # just checking
# bbdiff cma build/lib/cma/ # just checking
backup --recover # recover above moved folder (and backup current, just in case)
Check distribution and project description:
Expand Down Expand Up @@ -71,7 +71,7 @@

setup(name="cma",
long_description=long_description, # __doc__, # can be used in the cma.py file
# long_description_content_type = 'text/x-rst', # 'text/markdown',
long_description_content_type = 'text/x-rst', # 'text/markdown',
version=__version__.split()[0],
description="CMA-ES, Covariance Matrix Adaptation " +
"Evolution Strategy for non-linear numerical " +
Expand Down
2 changes: 1 addition & 1 deletion tools/conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package:
version: "3.2.1"
version: "3.2.2"
name: 'cma'

source:
Expand Down

0 comments on commit 593a5b5

Please sign in to comment.