From 272df9d792bb4a001b7270f5b875bd7802658240 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Fri, 22 Mar 2024 10:36:53 -0500 Subject: [PATCH] Backport PR #2458: fix: Use str object for jupyterlite-sphinx jupyterlite_dir config --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 06ead2b2a7..60ab7b974d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -531,5 +531,5 @@ def setup(app): linkcheck_retries = 50 # JupyterLite configuration -# Use Path as jupyterlite-sphinx expects PosixPath -jupyterlite_dir = Path("lite") +# jupyterlite-sphinx v0.13.0+ expects str +jupyterlite_dir = str(Path("lite"))