Skip to content

Commit

Permalink
version 3.0.2
Browse files Browse the repository at this point in the history
fixed two problems with EvalParallel2
  • Loading branch information
nikohansen committed Apr 20, 2020
1 parent 8955efd commit 14de148
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ either of these with ``sudo``.

## Version History

* [Release ``3.0.1``](https://github.com/CMA-ES/pycma/releases/tag/r3.0.1) provides parallelization with ``OOOptimizer.optimize(..., n_jobs=...)`` and improved `pickle` support.
* [Release ``3.0.2``](https://github.com/CMA-ES/pycma/releases/tag/r3.0.2) provides parallelization with ``OOOptimizer.optimize(..., n_jobs=...)`` and improved `pickle` support.

* [Release ``3.0.0``](https://github.com/CMA-ES/pycma/releases/tag/r3.0.0) provides non-linear constraints handling, improved plotting and termination options and better resilience to injecting bad solutions, and further various fixes.

Expand Down
4 changes: 2 additions & 2 deletions cma/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@

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

__version__ = "3.0.1 $Revision: 4429 $ $Date: 2020-04-19 00:54:00 +0200 (Sun, 19 Apr 2020) $"
__version__ = "3.0.2 $Revision: 4430 $ $Date: 2020-04-21 01:19:04 +0200 (Tue, 21 Apr 2020) $"
# $Source$ # according to PEP 8 style guides, but what is it good for?
# $Id: __init__.py 4429 2020-04-18 22:54:00Z hansen $
# $Id: __init__.py 4430 2020-04-20 23:19:04Z hansen $
# bash $: svn propset svn:keywords 'Date Revision Id' __init__.py
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
twine upload dist/*3.0.2* # to not upload outdated stuff
Anaconda::
code tools/conda.recipe/meta.yaml # edit version number
conda-build -q tools/conda.recipe
"""
# from distutils.core import setup
from setuptools import setup
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.0.1"
version: "3.0.2"
name: 'cma'

source:
Expand Down

0 comments on commit 14de148

Please sign in to comment.