diff --git a/notebooks/aghast.ipynb b/notebooks/aghast.ipynb index ed87caf5..7e572c0e 100644 --- a/notebooks/aghast.ipynb +++ b/notebooks/aghast.ipynb @@ -6,7 +6,7 @@ "source": [ "# ROOT file format example\n", "\n", - "To run this example, you will need `uproot`, which is another SciKit-HEP library." + "To run this example, you will need `uproot3`, which is another SciKit-HEP library." ] }, { @@ -17,7 +17,7 @@ "source": [ "import numpy as np\n", "import boost_histogram as bh\n", - "import uproot\n", + "import uproot3\n", "import os\n", "import matplotlib.pyplot as plt" ] @@ -65,7 +65,7 @@ "metadata": {}, "outputs": [], "source": [ - "root_file = uproot.recreate(\"demo_uproot_file.root\")\n", + "root_file = uproot3.recreate(\"demo_uproot_file.root\")\n", "\n", "# Uproot automatically converts NumPy style tuples\n", "root_file[\"hist\"] = h.to_numpy()" @@ -111,7 +111,7 @@ } ], "source": [ - "root_file2 = uproot.open(\"demo_uproot_file.root\")\n", + "root_file2 = uproot3.open(\"demo_uproot_file.root\")\n", "uproot_hist = root_file2[\"hist\"]\n", "uproot_hist.show()" ] @@ -120,7 +120,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "This uproot histogram can be converted to NumPy with `.numpy()`:" + "This uproot3 histogram can be converted to NumPy with `.numpy()`:" ] }, { diff --git a/setup.py b/setup.py index dd7d5fbf..4392c93f 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ "nbsphinx", "sphinx_copybutton", ], - "examples": ["matplotlib", "xarray", "xhistogram", "netCDF4", "numba", "uproot"], + "examples": ["matplotlib", "xarray", "xhistogram", "netCDF4", "numba", "uproot", "uproot3"], "dev": ["ipykernel", "cloudpickle", "typer"], } extras["all"] = sum(extras.values(), [])