Skip to content

Commit

Permalink
prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
fracpete committed Dec 7, 2022
1 parent 249ec26 commit 1dcb3bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.11'
version = '0.2.12'
# The full version, including alpha/beta/rc tags.
release = '0.2.11'
release = '0.2.12'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
12 changes: 6 additions & 6 deletions doc/source/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For using the image interactively, you can run the following command:
.. code-block:: bash
docker run -u $(id -u):$(id -g) \
-it fracpete/pww3:0.2.10_cpu
-it fracpete/pww3:0.2.12_cpu
Instead of having to reinstall your packages each time you start up the container,
you can map your local Weka packages into the container as follows:
Expand All @@ -29,7 +29,7 @@ you can map your local Weka packages into the container as follows:
docker run -u $(id -u):$(id -g) \
-v $HOME/wekafiles/:/workspace/wekafiles \
-it fracpete/pww3:0.2.10_cpu
-it fracpete/pww3:0.2.12_cpu
GPU
Expand All @@ -40,7 +40,7 @@ For using the image interactively, you can run the following command:
.. code-block:: bash
docker run --gpus=all -u $(id -u):$(id -g) \
-it fracpete/pww3:0.2.10_cuda10.2
-it fracpete/pww3:0.2.12_cuda10.2
Instead of having to reinstall your packages each time you start up the container,
you can map your local Weka packages into the container as follows:
Expand All @@ -49,7 +49,7 @@ you can map your local Weka packages into the container as follows:
docker run --gpus=all -u $(id -u):$(id -g) \
-v $HOME/wekafiles/:/workspace/wekafiles \
-it fracpete/pww3:0.2.10_cuda10.2
-it fracpete/pww3:0.2.12_cuda10.2
Additional Weka packages
Expand All @@ -75,11 +75,11 @@ script:
A minimal ``Dockerfile`` (in the same directory as ``install_packages.py``) then looks
like this (using pww3 0.2.10 for CPU):
like this (using pww3 0.2.12 for CPU):

::

FROM fracpete/pww3:0.2.10_cpu
FROM fracpete/pww3:0.2.12_cpu
COPY install_packages.py /workspace/install_packages.py
RUN python3 /workspace/install_packages.py

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _read(f):
"weka": ["lib/*.jar"],
},
include_package_data=True,
version="0.2.11",
version="0.2.12",
author='Peter "fracpete" Reutemann',
author_email='[email protected]',
install_requires=[
Expand Down

0 comments on commit 1dcb3bb

Please sign in to comment.