home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 957131705 and user = 2448579 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

user 1

  • dcherian · 2 ✖

issue 1

  • recent versions of sparse and dask seem to be incompatible with our tests · 2 ✖

author_association 1

  • MEMBER 2
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
906477357 https://github.com/pydata/xarray/issues/5654#issuecomment-906477357 https://api.github.com/repos/pydata/xarray/issues/5654 IC_kwDOAMm_X842B78t dcherian 2448579 2021-08-26T14:45:28Z 2021-08-26T14:45:28Z MEMBER

The failure in xarray/tests/test_sparse.py::test_chunk doesn't appear anywhere in recent CI runs

It was xfailed in #5729 , maybe that explains it

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  recent versions of sparse and dask seem to be incompatible with our tests 957131705
898932809 https://github.com/pydata/xarray/issues/5654#issuecomment-898932809 https://api.github.com/repos/pydata/xarray/issues/5654 IC_kwDOAMm_X841lKBJ dcherian 2448579 2021-08-14T17:18:56Z 2021-08-14T17:19:04Z MEMBER

This looks like dask.

```python ______ test_chunk ________

@requires_dask
def test_chunk():
    s = sparse.COO.from_numpy(np.array([0, 0, 1, 2]))
    a = DataArray(s)
    ac = a.chunk(2)
    assert ac.chunks == ((2, 2),)
    assert isinstance(ac.data._meta, sparse.COO)
  assert_identical(ac, a)

self = <COO: shape=(2,), dtype=bool, nnz=0, fill_value=False> other = <function _broadcast_trick_inner at 0x7f325aef91f0>

def func(self, other):
    if _disables_array_ufunc(other):
        return NotImplemented
  return ufunc(other, self)

E TypeError: operand type(s) all returned NotImplemented from array_ufunc(<ufunc 'bitwise_and'>, 'call', <function _broadcast_trick_inner at 0x7f325aef91f0>, <COO: shape=(2,), dtype=bool, nnz=0, fill_value=False>): 'curry', 'COO' ```

cc @jrbourbeau

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  recent versions of sparse and dask seem to be incompatible with our tests 957131705

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 212.573ms · About: xarray-datasette