From 5348874084fd6b20505005de08379fe810a85317 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Fri, 24 Jan 2025 23:23:18 -0800 Subject: [PATCH] Add scipy to docs deps, update changelog --- CHANGELOG.md | 7 ++++++- pyproject.toml | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17172c34..c7eb7308 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # HDMF-ZARR Changelog -## 0.11.0 January 17, 2025 +## [Upcoming] + +### Changed +* Added scipy to optional dependencies to be compatible with HDMF 4.0. @rly [#261](https://github.com/hdmf-dev/hdmf-zarr/pull/261) + +## 0.11.0 (January 17, 2025) ### Changed * Adopted changelog format conventions: https://keepachangelog.com/en/1.0.0/ . @rly [#254](https://github.com/hdmf-dev/hdmf-zarr/pull/254) diff --git a/pyproject.toml b/pyproject.toml index f9686839..e8666a75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,7 @@ test = [ # documentation dependencies docs = [ "matplotlib", + "scipy", # used in some docs "sphinx>=4", # improved support for docutils>=0.17 "sphinx_rtd_theme>=1", # <1 does not work with docutils>=0.17 "sphinx-gallery",