From 8eb4508cdae39df60c351bf30857e57d94a4b9b2 Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Tue, 19 Mar 2024 12:11:01 +0200 Subject: [PATCH] Make distributed an optional package (#19) --- HISTORY.rst | 4 ++++ pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d9fb027..92dac45 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ History ======= +X.Y.Z (YYYY-MM-DD) +------------------ +* Make distributed an optional package (:pr:`19`) + 0.2.0 (2024-03-19) ------------------ * Update README (:pr:`18`) diff --git a/pyproject.toml b/pyproject.toml index 4fa82d9..1a9bc5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,11 +12,11 @@ astropy = "^6.0.0" dask = {extras = ["array"], version = "^2024.3.1"} xarray = "^2024.2.0" pytest = {version = "^8.1.1", optional = true, extras = ["testing"]} -distributed = {version = "^2024.3.1", extras = ["testing"]} +distributed = {version = "^2024.3.1", optional = true, extras = ["testing"]} fsspec = "^2024.3.0" [tool.poetry.extras] -testing = ["pytest"] +testing = ["distributed", "pytest"] [tool.poetry.group.dev.dependencies] tbump = "^6.9.0"