home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

8 rows where author_association = "MEMBER" and issue = 951121126 sorted by updated_at descending

✖
✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: reactions, created_at (date), updated_at (date)

user 5

  • keewis 4
  • shoyer 1
  • max-sixty 1
  • mathause 1
  • TomNicholas 1

issue 1

  • remove deprecations scheduled for 0.19 · 8 ✖

author_association 1

  • MEMBER · 8 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
885886303 https://github.com/pydata/xarray/pull/5630#issuecomment-885886303 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840zY1f keewis 14808389 2021-07-23T20:06:07Z 2021-07-23T20:06:07Z MEMBER

@TomNicholas, since the latest commit reverted the completion of the .update deprecation cycle, I think it should be fine to merge this and issue the release.

{
    "total_count": 1,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 1,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885830128 https://github.com/pydata/xarray/pull/5630#issuecomment-885830128 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840zLHw keewis 14808389 2021-07-23T18:42:48Z 2021-07-23T18:43:14Z MEMBER

this would essentially mean that we are extending the deprecation (since code and docs should be in sync)... we did consider the wrapper object in #4932, but I think back then we decided that warning in-code was too much trouble. I'll undo the removal and push the version to 0.21, which should give us some time to discuss what to do.

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885801454 https://github.com/pydata/xarray/pull/5630#issuecomment-885801454 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840zEHu shoyer 1217238 2021-07-23T17:50:16Z 2021-07-23T17:50:57Z MEMBER

I would still return something from Dataset.update() for now.

I agree that it would be great to remove it, but to do that perhaps we could make some of Dataset subclass that issues a warning when any method is called on it? Perhaps something like: ```python import xarray import warnings

class DeprecatedDatasetFromUpdate(xarray.Dataset): slots = ['_accessed']

def init(self, args, kwargs): self._accessed = False super().init(args, **kwargs)

def getattribute(self, key): if not super().getattribute('_accessed'): warnings.warn( "This xarray.Dataset was created as the return value of " "xarray.Dataset.update(), but update() will return None in the " "future", category=FutureWarning) self._accessed = True return super().getattribute(key) ```

But could be a little tricky to get right, so perhaps let's save this for a later PR.

{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885795885 https://github.com/pydata/xarray/pull/5630#issuecomment-885795885 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840zCwt keewis 14808389 2021-07-23T17:40:09Z 2021-07-23T17:40:09Z MEMBER

As far as I'm concerned this should be ready for a final review. We didn't yet decide what to do about the Dataset.update return value, though.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885525804 https://github.com/pydata/xarray/pull/5630#issuecomment-885525804 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840yA0s keewis 14808389 2021-07-23T09:49:49Z 2021-07-23T09:49:49Z MEMBER

thanks for the whats-new.rst entries, @TomNicholas

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885482501 https://github.com/pydata/xarray/pull/5630#issuecomment-885482501 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840x2QF mathause 10194086 2021-07-23T08:25:17Z 2021-07-23T08:25:17Z MEMBER

Thanks @keewis for the keep_attrs deprecations (and for the other as well, of course).

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885328729 https://github.com/pydata/xarray/pull/5630#issuecomment-885328729 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840xQtZ TomNicholas 35968931 2021-07-23T00:43:35Z 2021-07-23T01:08:42Z MEMBER

This is great - there is one more to remove in combine.py isn't there? line 638

EDIT: I pushed a commit to this branch removing that one too.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126
885298762 https://github.com/pydata/xarray/pull/5630#issuecomment-885298762 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840xJZK max-sixty 5635139 2021-07-22T23:21:38Z 2021-07-22T23:21:38Z MEMBER

Excellent, thanks a lot @keewis !

Maybe it's worth merging from the command line to retain the distinct commits on main (though maybe GH saves them?)

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  remove deprecations scheduled for 0.19 951121126

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 13.829ms · About: xarray-datasette
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows