Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- run:
name: Install CI dependencies
command: python -m pip install -r requirements.txt
command: pixi install

- restore_cache:
keys:
Expand All @@ -28,13 +28,13 @@ jobs:
- save_cache:
key: jupyter_ch
paths:
- _build/.jupyter_cache
- build/.jupyter_cache

- store_artifacts:
path: _build/html
path: build/html

- persist_to_workspace:
root: _build
root: build
paths:
- html

Expand Down
10 changes: 9 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'notes', '.tox', '.tmp', '.pytest_cache', 'README.md']
exclude_patterns = [

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😱

'build',
'notes',
'.pixi',
'.tox',
'.tmp',
'.pytest_cache',
'README.md'
]

# MyST-NB configuration
nb_merge_streams = True
Expand Down
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version = "0.1.0"
[tasks]
build = { cmd = [
"sphinx-build",
"docs", # source directory
".", # source directory
"build/html", # target directory
"-n", # warn about missing references
"-W", # any warnings fail the build
Expand Down