Skip to content

Commit 0883e1a

Browse files
committed
prepared for release
1 parent cdde516 commit 0883e1a

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
0.2.16 (2024-05-10)
5+
-------------------
6+
7+
- `setup.py` no longer lists python-javabridge with github URL, as it fails to
8+
install via pip otherwise
9+
10+
411
0.2.15 (2024-05-10)
512
-------------------
613

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.15'
56+
version = '0.2.16'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '0.2.15'
58+
release = '0.2.16'
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For using the CPU image interactively, you can run the following command:
2323
.. code-block:: bash
2424
2525
docker run -u $(id -u):$(id -g) \
26-
-it fracpete/pww3:0.2.15_cpu
26+
-it fracpete/pww3:0.2.16_cpu
2727
2828
Instead of having to reinstall your packages each time you start up the container,
2929
you can map your local Weka packages into the container as follows:
@@ -32,7 +32,7 @@ you can map your local Weka packages into the container as follows:
3232
3333
docker run -u $(id -u):$(id -g) \
3434
-v $HOME/wekafiles/:/workspace/wekafiles \
35-
-it fracpete/pww3:0.2.15_cpu
35+
-it fracpete/pww3:0.2.16_cpu
3636
3737
3838
GPU
@@ -74,7 +74,7 @@ is in our current directory (`pwd`), then we can do something like this:
7474
docker run --rm -u $(id -u):$(id -g) \
7575
-v $HOME/wekafiles:/workspace/wekafiles \
7676
-v `pwd`:/workspace/data \
77-
-t fracpete/pww3:0.2.15_cpu \
77+
-t fracpete/pww3:0.2.16_cpu \
7878
pww-classifier \
7979
-t /workspace/data/anneal.arff \
8080
weka.classifiers.trees.J48
@@ -112,7 +112,7 @@ This script is then executed as follows:
112112
docker run --rm -u $(id -u):$(id -g) \
113113
-v $HOME/wekafiles:/workspace/wekafiles \
114114
-v `pwd`:/workspace/data \
115-
-t fracpete/pww3:0.2.15_cpu \
115+
-t fracpete/pww3:0.2.16_cpu \
116116
python3 /workspace/data/j48.py
117117
118118
@@ -143,7 +143,7 @@ like this (using pww3 0.2.14 for CPU):
143143

144144
::
145145

146-
FROM fracpete/pww3:0.2.15_cpu
146+
FROM fracpete/pww3:0.2.16_cpu
147147
COPY install_packages.py /workspace/install_packages.py
148148
RUN python3 /workspace/install_packages.py
149149

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _read(f):
5555
"weka": ["lib/*.jar"],
5656
},
5757
include_package_data=True,
58-
version="0.2.15",
58+
version="0.2.16",
5959
author='Peter "fracpete" Reutemann',
6060
author_email='[email protected]',
6161
install_requires=[

0 commit comments

Comments
 (0)