diff --git a/docs/GettingStarted/setting_up_the_script.rst b/docs/GettingStarted/setting_up_the_script.rst index 44330df..021c2c2 100644 --- a/docs/GettingStarted/setting_up_the_script.rst +++ b/docs/GettingStarted/setting_up_the_script.rst @@ -191,7 +191,8 @@ stderr, since those capture Dask's distributed print function's text output. TMP_PATH = "C:/ProgrammingTools/ComputerVision/RobartsResearch/data/lightsheet/tmp" with qsetup.PLComponents(TMP_PATH, 'CacheDirectoryThreading', - client_args=dict(threads_per_worker=12, n_workers=1)) as plc: + client_args=dict(threads_per_worker=12, n_workers=1), + viewer_args=dict(use_viewer=True)) as plc: # DO DASK COMPUTATION, AND SHOW RESULTS IN plc.viewer plc.viewer.show(block=True) diff --git a/docs/conf.py b/docs/conf.py index 51afd71..111d997 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'cvpl_tools' copyright = '2024, KarlHanUW' author = 'KarlHanUW' -release = '0.6.3' +release = '0.6.4' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 02464e2..40d902a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cvpl-tools" -version = "0.6.3" +version = "0.6.4" description = "A Python package for utilities and classes related to the file I/O, dataset record keeping and visualization for image processing and computer vision." authors = ["Karl5766 "] license = "MIT"