Skip to content

Commit

Permalink
Backport PR #2458: fix: Use str object for jupyterlite-sphinx jupyter…
Browse files Browse the repository at this point in the history
…lite_dir config
  • Loading branch information
matthewfeickert authored and meeseeksmachine committed May 30, 2024
1 parent 88ba93b commit 272df9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

0 comments on commit 272df9d

Please sign in to comment.