-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make sphinx run again #167
Changes from all commits
f2f15b1
5913f64
f9e873e
966a162
68d7eef
21a60e0
cb91564
00e985a
dd78849
ec82a0e
b04c76d
cd9a423
b7f8e27
5ce6d73
23009d9
e9be0a1
21dfe81
dddb2c8
cdf6d78
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,7 @@ | |
"source": [ | ||
"import xbitinfo as xb\n", | ||
"\n", | ||
"import xarray as xr\n", | ||
"\n", | ||
"xr.set_options(display_style=\"text\")" | ||
"import xarray as xr" | ||
] | ||
}, | ||
{ | ||
|
@@ -29,9 +27,9 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"ds = xr.tutorial.load_dataset(\"eraint_uvz\")\n", | ||
"ds = xr.tutorial.load_dataset(\"eraint_uvz\").astype(\"float32\")\n", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do you approve of this fix in the quickstart or better take another sample dataset? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is okay for now. Could you mention this specific commit in issue #168 so that we do not forget to revert it. |
||
"\n", | ||
"# xb.plot_distribution(ds)", | ||
"xb.plot_distribution(ds)", | ||
"\n", | ||
"ds" | ||
] | ||
|
@@ -119,6 +117,18 @@ | |
"ds_bitrounded = xb.xr_bitround(ds, keepbits)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "8af292c1-1354-45a9-ba04-e129acfad3ba", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"xr.concat([ds, ds_bitrounded], \"bitround\").isel(level=0)[\"v\"].plot(\n", | ||
" col=\"bitround\", row=\"month\"\n", | ||
")" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "c0b507c7-4261-4ff0-8d8e-617d874c6832", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking into the raw log of the docs build, I found a CellTimeoutError. Fixing with https://myst-nb.readthedocs.io/en/latest/configuration.html