diff --git a/README.md b/README.md index 18fbf34..24fe1b7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![pytest](https://github.com/wimpomp/parfor/actions/workflows/pytest.yml/badge.svg)](https://github.com/wimpomp/parfor/actions/workflows/publish.yml) +[![pytest](https://github.com/wimpomp/parfor/actions/workflows/publish.yml/badge.svg)](https://github.com/wimpomp/parfor/actions/workflows/publish.yml) # Parfor Used to parallelize for-loops using parfor in Matlab? This package allows you to do the same in python. diff --git a/parfor/__init__.py b/parfor/__init__.py index 094c496..718ff78 100644 --- a/parfor/__init__.py +++ b/parfor/__init__.py @@ -199,7 +199,7 @@ def get_worker(n_processes) -> RemoteFunction: if not ray.is_initialized(): os.environ["RAY_ACCEL_ENV_VAR_OVERRIDE_ON_ZERO"] = "0" - ray.init(logging_level=logging.ERROR, log_to_driver=False) + ray.init(logging_level=logging.ERROR, log_to_driver=False, include_dashboard=False) def worker(task): try: diff --git a/pyproject.toml b/pyproject.toml index 78e2d96..0c29524 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "parfor" -version = "2026.2.0" +version = "2026.2.1" description = "A package to mimic the use of parfor as done in Matlab." authors = [ { name = "Wim Pomp-Pervova", email = "wimpomp@gmail.com" }