Skip to content

Commit

Permalink
FIX: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky committed May 9, 2024
1 parent 0555bc0 commit 3e1148e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lectures/inflation_history.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ This lecture also requires `pandas >= 2.1.4`

```{code-cell} ipython3
:tags: [hide-output]
from packaging.version import Version
import pandas as pd
from packaging.version import Version
from importlib import reload
if Version(pd.__version__) < Version('2.1.4'):
!pip install pandas==2.1.4
reload(pandas)
Expand Down

0 comments on commit 3e1148e

Please sign in to comment.