diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index ad6842e..f319387 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -374,8 +374,7 @@ RUN pip install bleach \ ipykernel \ ipython \ ipython-genutils \ - # Fix qgrid by pinning ipywidgets https://github.com/quantopian/qgrid/issues/376 - ipywidgets==7.7.1 \ + ipywidgets==8.1.5 \ isoweek \ jedi \ jsonschema \ @@ -464,7 +463,6 @@ RUN pip install wandb \ rm -rf /opt/conda/lib/python3.10/site-packages/numpy* && \ pip install "numpy==1.26.4" && \ pip install pytorch-ignite \ - qgrid \ bqplot \ earthengine-api \ transformers \ diff --git a/tests/test_qgrid.py b/tests/test_qgrid.py deleted file mode 100644 index e97ef2a..0000000 --- a/tests/test_qgrid.py +++ /dev/null @@ -1,16 +0,0 @@ -import unittest - -import numpy as np -import pandas as pd - -from qgrid import QgridWidget - - -class TestQgrid(unittest.TestCase): - def test_nans(self): - df = pd.DataFrame([(pd.Timestamp('2017-02-02'), np.nan), - (4, 2), - ('foo', 'bar')]) - view = QgridWidget(df=df) - - self.assertIsNotNone(view.get_changed_df())