home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

10 rows where 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 7

  • keewis 4
  • shoyer 1
  • max-sixty 1
  • mathause 1
  • pep8speaks 1
  • TomNicholas 1
  • github-actions[bot] 1

author_association 3

  • MEMBER 8
  • CONTRIBUTOR 1
  • NONE 1

issue 1

  • remove deprecations scheduled for 0.19 · 10 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
885326583 https://github.com/pydata/xarray/pull/5630#issuecomment-885326583 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840xQL3 github-actions[bot] 41898282 2021-07-23T00:35:57Z 2021-07-23T20:41:23Z CONTRIBUTOR

Unit Test Results

6 files  ±0           6 suites  ±0   53m 18s :stopwatch: ±0s 16 200 tests ±0  14 481 :heavy_check_mark: ±0  1 719 :zzz: ±0  0 :x: ±0  90 396 runs  ±0  82 236 :heavy_check_mark: ±0  8 160 :zzz: ±0  0 :x: ±0 

Results for commit c5530d52. ± Comparison against base commit c5530d52.

:recycle: This comment has been updated with latest results.

{
    "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
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
885289891 https://github.com/pydata/xarray/pull/5630#issuecomment-885289891 https://api.github.com/repos/pydata/xarray/issues/5630 IC_kwDOAMm_X840xHOj pep8speaks 24736507 2021-07-22T23:02:23Z 2021-07-23T18:46:57Z NONE

Hello @keewis! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:

  • In the file xarray/tests/test_coarsen.py:

Line 16:1: F401 '.test_dataarray.da' imported but unused Line 17:1: F401 '.test_dataset.ds' imported but unused Line 20:36: F811 redefinition of unused 'ds' from line 17 Line 27:26: F811 redefinition of unused 'ds' from line 17 Line 42:25: F811 redefinition of unused 'ds' from line 17 Line 58:5: F811 redefinition of unused 'da' from line 16 Line 69:5: F811 redefinition of unused 'da' from line 16 Line 91:5: F811 redefinition of unused 'ds' from line 17 Line 160:25: F811 redefinition of unused 'ds' from line 17 Line 191:5: F811 redefinition of unused 'da' from line 16 Line 240:28: F811 redefinition of unused 'da' from line 16 Line 256:5: F811 redefinition of unused 'ds' from line 17

Comment last updated at 2021-07-23 18:46:56 UTC
{
    "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
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 15.37ms · About: xarray-datasette