Skip to content

Commit 34d5c8f

Browse files
committed
prepared for release
1 parent 7121f60 commit 34d5c8f

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

CHANGES.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
0.2.9 (????-??-??)
4+
0.2.9 (2022-04-17)
55
------------------
66

77
- method `JavaObject.new_instance` in module `weka.core.classes` now automatically
@@ -10,7 +10,6 @@ Changelog
1010
- method `test_model_once` of class `Evaluation` (module: `weka.classifiers`) now has the
1111
additional parameter `store`, which allows the recording of the predictions (necessary
1212
for statistics like AUC)
13-
- ...
1413

1514

1615
0.2.8 (2022-03-24)

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '0.2.8'
56+
version = '0.2.9'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '0.2.8'
58+
release = '0.2.9'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

doc/source/docker.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For using the image interactively, you can run the following command:
2020
.. code-block:: bash
2121
2222
docker run -u $(id -u):$(id -g) \
23-
-it fracpete/pww3:0.2.8_cpu
23+
-it fracpete/pww3:0.2.9_cpu
2424
2525
Instead of having to reinstall your packages each time you start up the container,
2626
you can map your local Weka packages into the container as follows:
@@ -29,7 +29,7 @@ you can map your local Weka packages into the container as follows:
2929
3030
docker run -u $(id -u):$(id -g) \
3131
-v $HOME/wekafiles/:/workspace/wekafiles \
32-
-it fracpete/pww3:0.2.8_cpu
32+
-it fracpete/pww3:0.2.9_cpu
3333
3434
3535
GPU
@@ -40,7 +40,7 @@ For using the image interactively, you can run the following command:
4040
.. code-block:: bash
4141
4242
docker run --gpus=all -u $(id -u):$(id -g) \
43-
-it fracpete/pww3:0.2.8_cuda10.2
43+
-it fracpete/pww3:0.2.9_cuda10.2
4444
4545
Instead of having to reinstall your packages each time you start up the container,
4646
you can map your local Weka packages into the container as follows:
@@ -49,4 +49,4 @@ you can map your local Weka packages into the container as follows:
4949
5050
docker run --gpus=all -u $(id -u):$(id -g) \
5151
-v $HOME/wekafiles/:/workspace/wekafiles \
52-
-it fracpete/pww3:0.2.8_cuda10.2
52+
-it fracpete/pww3:0.2.9_cuda10.2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1313

1414
# setup.py
15-
# Copyright (C) 2014-2021 Fracpete (pythonwekawrapper at gmail dot com)
15+
# Copyright (C) 2014-2022 Fracpete (pythonwekawrapper at gmail dot com)
1616

1717
from setuptools import setup
1818

@@ -55,7 +55,7 @@ def _read(f):
5555
"weka": ["lib/*.jar"],
5656
},
5757
include_package_data=True,
58-
version="0.2.8",
58+
version="0.2.9",
5959
author='Peter "fracpete" Reutemann',
6060
author_email='[email protected]',
6161
install_requires=[

0 commit comments

Comments
 (0)