diff --git a/docs/user_guide/install.rst b/docs/user_guide/install.rst index 8ef8444..0c56a84 100644 --- a/docs/user_guide/install.rst +++ b/docs/user_guide/install.rst @@ -5,6 +5,7 @@ To install the package, you can use ``pip``:: pip install huracanpy -This can fail with older python versions due to issues with installing cartopy through -pip. If this happens, use conda to install cartopy first -(e.g. ``conda install -c conda-forge cartopy``), then install huracanpy as normal \ No newline at end of file +Nota Bene: + +#. We support Python 3.8 to 3.12. In particular, Python 1.13 is not currently supported due to one of the dependencies not supporting it. +#. The installation may fail due to issues with installing cartopy through pip. If this happens, use conda to install cartopy first (e.g. ``conda install -c conda-forge cartopy``), then install huracanpy as normal. \ No newline at end of file diff --git a/huracanpy/_accessor.py b/huracanpy/_accessor.py index 8b07d42..467bd39 100644 --- a/huracanpy/_accessor.py +++ b/huracanpy/_accessor.py @@ -26,7 +26,7 @@ def nunique(self): @xr.register_dataset_accessor("hrcn") class HuracanPyDatasetAccessor: def __init__(self, dataset): - self._dataset = dataset.copy() + self._dataset = dataset # %% Save def save(self, filename):