Skip to content

Commit 83089d1

Browse files
committed
v4.4.4
add version in docstring to pick up by API docs
1 parent 53d4b3b commit 83089d1

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ either of these with ``sudo``.
101101

102102
## Version History
103103

104+
* [Release ``4.4.4``](https://github.com/CMA-ES/pycma/releases/tag/r4.4.4)
105+
- fix the fix of [issue 343](https://github.com/CMA-ES/pycma/issues/343)
106+
104107
* [Release ``4.4.3``](https://github.com/CMA-ES/pycma/releases/tag/r4.4.3)
105108
- Addressing [issue 231](https://github.com/CMA-ES/pycma/issues/231), failures
106109
in corner cases with large population size, by increasing the step-size

cma/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@
103103

104104
___author__ = "Nikolaus Hansen and Petr Baudis and Youhei Akimoto"
105105
__license__ = "BSD 3-clause"
106-
__version__ = "4.4.3"
106+
__version__ = "4.4.4"
107+
'''version 4.4.4''' # allows the apidocs to "pick up" the version number
107108

108109

109110
import collections as _collections

setup-howto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
git checkout -- cma
3838
pydoctor --docformat=restructuredtext --html-output=apidocs cma > pydoctor-messages.txt
3939
backup --recover
40-
less pydoctor-messages.txt # less +G = check for errors (which are at the end!)
40+
less +G pydoctor-messages.txt # less +G = check for errors (which are at the end!)
4141
4242
5.
4343
Make and check the distribution assuming a clean src/ folder (ln -s ../cma src/cma, was: from a (usual) dirty code folder ==> install-folder)::
@@ -92,7 +92,7 @@
9292
Push new docs to github
9393
9494
cp -r apidocs/* /Users/hansen/git/CMA-ES.github.io/apidocs-pycma
95-
cd /Users/hansen/git/CMA-ES.github.io
95+
z /Users/hansen/git/CMA-ES.github.io
9696
git add apidocs-pycma # there may be new files
9797
git ci
9898
git push

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

55
source:

0 commit comments

Comments
 (0)