Skip to content
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

docs: disable IPyParallel & load dependencies in reverse order #2126

Merged
merged 1 commit into from
Jan 16, 2023
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
16 changes: 8 additions & 8 deletions docs/getting-started/demo/what-is-an-awkward-array.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"cells": [
{
"cell_type": "markdown",
"id": "53a4d322",
"metadata": {
"deletable": false,
"editable": false
},
"source": [
"- To run the code, click on the first cell (gray box) and press <kbd>Shift</kbd>+<kbd>Enter</kbd> (or click the play button) to run each cell.\n",
"- Or, select `Run All Cells` from the `Run` menu.\n",
"- Feel free to experiment, but if you need to restore the original code, reload this browser page. Any changes you make will be lost when you reload!\n",
"- When you leave the page, you might get a \"Changes you made may not be saved\" message, which you can ignore."
],
"metadata": {
"collapsed": false,
"editable": false,
"deletable": false
}
]
},
{
"cell_type": "code",
Expand All @@ -22,7 +22,7 @@
"outputs": [],
"source": [
"# Install Awkward Array in the browser\n",
"import piplite; await piplite.install(\"awkward>=2.0.0rc0\")\n",
"import piplite; await piplite.install(\"awkward-cpp\"); await piplite.install(\"awkward>=2.0\")\n",
"\n",
"# Import normal libraries\n",
"import numpy as np\n",
Expand Down Expand Up @@ -558,7 +558,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.10.8"
},
"mystnb": {
"execution_mode": "off"
Expand Down
7 changes: 5 additions & 2 deletions docs/lite/jupyter-lite.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"jupyter-config-data": {
"enableMemoryStorage": true,
"settingsStorageDrivers": ["memoryStorageDriver"],
"contentsStorageDrivers": ["memoryStorageDriver"]
"contentsStorageDrivers": ["memoryStorageDriver"],
"disabledExtensions": [
"ipyparallel-labextension"
]
}
}
}