LSSTDESC / gcr-catalogs

A Python module that provides a unified interface to access mock galaxy catalogs and more for the LSST DESC
https://github.com/LSSTDESC/gcr-catalogs
BSD 3-Clause "New" or "Revised" License
26 stars 20 forks source link

pandas dataframe iteritems is deprecated #614

Closed erykoff closed 1 year ago

erykoff commented 1 year ago

Using gcrcatalogs with the latest rubin-env=5.1.0 gives deprecation warnings from https://github.com/LSSTDESC/gcr-catalogs/blob/10b9cce2b564cb8d8c27c613fd8098373319b07c/GCRCatalogs/parquet.py#L15, specifically:

/opt/lsst/software/stack/conda/miniconda3-py38_4.9.2/envs/lsst-scipipe-5.1.0/lib/python3.10/site-packages/GCRCatalogs/parquet.py:15: FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead.
  return {col: arr.values for col, arr in df.iteritems()}