Skip to content
Open
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
1 change: 1 addition & 0 deletions changelog.d/587.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Suppress Python warnings at the top of the validation notebook so re-executions don't surface pandas/plotly deprecation noise in the docs build.
3 changes: 3 additions & 0 deletions docs/book/validation/validation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1789,6 +1789,9 @@
}
],
"source": [
"import warnings\n",
"warnings.filterwarnings(\"ignore\")\n",
"\n",
"from policyengine_uk import Microsimulation\n",
"\n",
"sim = Microsimulation()\n",
Expand Down