File tree 7 files changed +425
-4
lines changed
7 files changed +425
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,12 @@ dependencies:
8
8
- numpydoc
9
9
- numpy_groupies
10
10
- toolz
11
+ - matplotlib-base
11
12
- myst-parser
13
+ - myst-nb
12
14
- sphinx
13
15
- furo
16
+ - ipykernel
17
+ - jupyter
14
18
- pip :
15
19
- git+https://github.com/dcherian/flox
Original file line number Diff line number Diff line change
1
+ .xr-wrap {
2
+ font-size : 0.85em ;
3
+ margin-left : 1.25em ;
4
+ padding-left : 1.25em ;
5
+ border-left : thin var (--color-foreground-muted ) solid;
6
+ }
7
+ .xr-array-wrap , .xr-var-data , .xr-var-preview {
8
+ font-size : 0.9em ;
9
+ }
10
+ .gp {
11
+ color : darkorange;
12
+ }
Original file line number Diff line number Diff line change @@ -40,5 +40,5 @@ Aggregation Objects
40
40
:toctree: generated/
41
41
42
42
aggregations.Aggregation
43
- aggregations.sum
43
+ aggregations.sum _
44
44
aggregations.nansum
Original file line number Diff line number Diff line change 16
16
import sys
17
17
18
18
import flox
19
+ import flox .aggregations
20
+ import flox .visualize
21
+ import flox .xarray
19
22
20
23
# If extensions (or modules to document with autodoc) are in another directory,
21
24
# add these directories to sys.path here. If the directory is relative to the
29
32
30
33
# -- General configuration -----------------------------------------------------
31
34
extensions = [
32
- "myst_parser" ,
33
35
"sphinx.ext.autodoc" ,
34
36
"sphinx.ext.viewcode" ,
35
37
"sphinx.ext.autosummary" ,
36
38
"sphinx.ext.intersphinx" ,
37
39
"sphinx.ext.extlinks" ,
38
40
"numpydoc" ,
39
41
"sphinx.ext.napoleon" ,
42
+ "myst_nb" ,
40
43
]
41
44
42
45
extlinks = {
45
48
}
46
49
47
50
templates_path = ["_templates" ]
48
- source_suffix = [".rst" , ".md" ]
51
+ source_suffix = [".rst" ]
49
52
master_doc = "index"
50
53
language = "en"
51
54
117
120
# Add any paths that contain custom static files (such as style sheets) here,
118
121
# relative to this directory. They are copied after the builtin static files,
119
122
# so a file named "default.css" will overwrite the builtin "default.css".
120
- # html_static_path = ["_static"]
123
+ html_static_path = ["_static" ]
124
+ html_css_files = ["style.css" ]
121
125
122
126
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
123
127
# using the given strftime format.
Original file line number Diff line number Diff line change @@ -50,4 +50,5 @@ It was motivated by many discussions in the [Pangeo](https://pangeo.io) communit
50
50
implementation.md
51
51
custom.md
52
52
api.rst
53
+ user-stories.md
53
54
```
Original file line number Diff line number Diff line change
1
+ # User Stories
2
+
3
+ ``` {eval-rst}
4
+ .. toctree::
5
+ :maxdepth: 1
6
+
7
+ user-stories/climatology.ipynb
8
+ ```
You can’t perform that action at this time.
0 commit comments