Skip to content

Commit

Permalink
[Doc] readthedocs: configuration key build.image is deprecated, chang…
Browse files Browse the repository at this point in the history
…ed to build.os (#596)

* configuration key build.image is deprecated, changed to build.os

* specify OS version

* specify tools and commands

* specify Python version for build
  • Loading branch information
Moritz-Alexander-Kern authored Oct 10, 2023
1 parent 9ec9d64 commit b332287
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion doc/tutorials/unitary_event_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,8 @@
"\n",
" fig, axes = plt.subplots(nrows=6, sharex=True,\n",
" figsize=plot_params['figsize'])\n",
" axes[5].get_shared_y_axes().join(axes[0], axes[2], axes[5])\n",
" axes[5].sharey(axes[0])\n",
" axes[0].sharey(axes[2])\n",
"\n",
" for ax in (axes[0], axes[2], axes[5]):\n",
" for n in range(n_neurons):\n",
Expand Down
6 changes: 4 additions & 2 deletions readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
version: 2

build:
image: latest
os: ubuntu-22.04
tools:
python: "mambaforge-22.9"

sphinx:
builder: html
Expand All @@ -18,4 +20,4 @@ python:
extra_requirements:
- docs
- extras
- tutorials
- tutorials

0 comments on commit b332287

Please sign in to comment.