From b05586c3a3dac2aacc6a7d04ee77c7ab7182a493 Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Tue, 6 Aug 2024 22:08:27 -0600 Subject: [PATCH] Fix docs build (#382) * [skip-ci] Bump furo * [skip-ci] bump rtd config * fix docs --- ci/docs.yml | 2 +- flox/__init__.py | 2 +- readthedocs.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/docs.yml b/ci/docs.yml index 1ad62512e..50bf98829 100644 --- a/ci/docs.yml +++ b/ci/docs.yml @@ -16,7 +16,7 @@ dependencies: - myst-parser - myst-nb - sphinx - - furo + - furo>=2024.08 - ipykernel - jupyter - sphinx-codeautolink diff --git a/flox/__init__.py b/flox/__init__.py index 2ca5fa5ba..839bfb076 100644 --- a/flox/__init__.py +++ b/flox/__init__.py @@ -2,7 +2,7 @@ # flake8: noqa """Top-level module for flox .""" from . import cache -from .aggregations import Aggregation # noqa +from .aggregations import Aggregation, Scan # noqa from .core import groupby_reduce, groupby_scan, rechunk_for_blockwise, rechunk_for_cohorts # noqa diff --git a/readthedocs.yml b/readthedocs.yml index 25699dd03..51b6b6b18 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,9 +1,9 @@ version: 2 build: - os: "ubuntu-20.04" + os: "ubuntu-lts-latest" tools: - python: "mambaforge-4.10" + python: "mambaforge-latest" conda: environment: ci/docs.yml