id,node_id,number,title,user,state,locked,assignee,milestone,comments,created_at,updated_at,closed_at,author_association,active_lock_reason,draft,pull_request,body,reactions,performed_via_github_app,state_reason,repo,type 1757818699,PR_kwDOAMm_X85TCxk8,7920,Fix regression with grouper object on an IndexVariable,895458,closed,0,,,5,2023-06-14T23:57:40Z,2023-06-22T18:00:31Z,2023-06-22T16:10:12Z,CONTRIBUTOR,,0,pydata/xarray/pulls/7920,"- [X] Closes #7919 - [X] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` ","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/7920/reactions"", ""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull 1434498245,PR_kwDOAMm_X85CINe7,7253,"Remove setuptools-scm-git-archive, require setuptools-scm>=7",895458,closed,0,,,2,2022-11-03T11:22:31Z,2022-12-01T19:17:38Z,2022-12-01T19:17:37Z,CONTRIBUTOR,,0,pydata/xarray/pulls/7253,"Since June 2022, [setuptools_scm_git_archive](https://github.com/Changaco/setuptools_scm_git_archive) is obsolete since ""setuptools_scm >= 7.0.0 supports Git archives by itself"". This PR follows the migration guide to update `.git_archival.txt`, and establish `setuptools-scm>=7` in `pyproject.toml`.","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/7253/reactions"", ""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull 1359451944,PR_kwDOAMm_X84-Pkru,6979,"Remove unnecessary build dependencies, use build defaults, strict twine check",895458,closed,0,,,3,2022-09-01T21:58:42Z,2022-09-10T07:34:25Z,2022-09-10T06:13:28Z,CONTRIBUTOR,,0,pydata/xarray/pulls/6979,"This PR does a few related things: - Remove `wheel` from `pyproject.toml`, since it is no longer needed/documented (e.g. [here](https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html)), and rename other dependencies to their names in PyPI - Remove `pip install` build dependencies already specified in `pyproject.toml` - Remove [`check-manifest`](https://pypi.org/project/check-manifest/), since it isn't used - The command `python -m build` has defaults to build both sdist and wheel outputs - Use `twine check --strict` to return non-zero status on warnings","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/6979/reactions"", ""total_count"": 1, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 1, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull 1359532011,PR_kwDOAMm_X84-P2pa,6980,"Improve CITATION.cff, specify license version in metadata",895458,closed,0,,,1,2022-09-01T23:28:51Z,2022-09-03T18:11:29Z,2022-09-03T13:19:44Z,CONTRIBUTOR,,0,pydata/xarray/pulls/6980,"This PR improves CITATION.cff to add abstract, license and repository-code fields, and to modify url to https://xarray.dev/ Also, update the metadata licence from ""Apache"", to ""[Apache-2.0](https://spdx.org/licenses/Apache-2.0.html)"", which is the short identifier defined by SPDX.","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/6980/reactions"", ""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull 1031275532,PR_kwDOAMm_X84tbs_K,5879,"Check for path-like objects rather than Path type, use os.fspath",895458,closed,0,,,14,2021-10-20T11:05:56Z,2022-03-31T21:41:32Z,2021-10-27T22:38:21Z,CONTRIBUTOR,,0,pydata/xarray/pulls/5879,"This PR generally changes (e.g.) `isinstance(filename, pathlib.Path)` to `isinstance(filename, os.PathLike)`, and uses `os.fspath` to convert it to (usually) `str` type. (If it is vital these are always `str`, then should [`os.fsdecode`](https://docs.python.org/3/library/os.html#os.fsdecode) be considered? `bytes` paths are not common, and only possible on some platforms). If other path-like objects are used e.g. [py.path](https://py.readthedocs.io/en/latest/path.html) used by the [tmpdir pytest fixture](https://docs.pytest.org/en/6.2.x/tmpdir.html#the-tmpdir-fixture), an error message is shown: > ValueError: can only read bytes or file-like objects with engine='scipy' or 'h5netcdf' This PR allows other path-like objects to be used. A few typing objects are also adjusted too. --- Be aware there are [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) and [path-like](https://docs.python.org/3/glossary.html#term-path-like-object) object terms used in the core Python glossary. In light of this, some ""file-like"" wordings may need to be adjusted, such as the error message described above. This can be done in this PR if anyone aggrees.","{""url"": ""https://api.github.com/repos/pydata/xarray/issues/5879/reactions"", ""total_count"": 3, ""+1"": 3, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull 995409132,MDExOlB1bGxSZXF1ZXN0NzMzMTc1MDAw,5793,MAINT: IOError -> OSError,895458,closed,0,,,6,2021-09-13T22:51:45Z,2021-09-15T20:55:07Z,2021-09-15T18:18:30Z,CONTRIBUTOR,,0,pydata/xarray/pulls/5793,IOError has been an alias of [OSError](https://docs.python.org/3/library/exceptions.html#OSError) since Python 3.3 (see [PEP 3151](https://www.python.org/dev/peps/pep-3151/)).,"{""url"": ""https://api.github.com/repos/pydata/xarray/issues/5793/reactions"", ""total_count"": 0, ""+1"": 0, ""-1"": 0, ""laugh"": 0, ""hooray"": 0, ""confused"": 0, ""heart"": 0, ""rocket"": 0, ""eyes"": 0}",,,13221727,pull