home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where user = 33122845 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

issue 3

  • Datetime as coordinaets does not convert back to datetime (returns int) 1
  • Tests fail when installing h5netcdf without netcdf4 1
  • added netCDF4 requirement to failing tests 1

user 1

  • feefladder · 3 ✖

author_association 1

  • CONTRIBUTOR 3
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
872938084 https://github.com/pydata/xarray/pull/5564#issuecomment-872938084 https://api.github.com/repos/pydata/xarray/issues/5564 MDEyOklzc3VlQ29tbWVudDg3MjkzODA4NA== feefladder 33122845 2021-07-02T11:48:07Z 2021-07-02T11:54:57Z CONTRIBUTOR

Also there is an issue when: fish cd xarray pip install -e . pip install h5netcdf pytest-xdist netcdf4 py.test -n 2 xarray/tests/test_backends.py ```python ======================================================== FAILURES ========================================================= ______ TestH5NetCDFFileObject.test_open_fileobj _________ [gw2] linux -- Python 3.9.5 /home/joeperdefloep/miniconda3/envs/xr-dev/bin/python3.9

self = <xarray.tests.test_backends.TestH5NetCDFFileObject object at 0x7f7e841a4220>

def test_open_fileobj(self):
    # open in-memory datasets instead of local file paths
    expected = create_test_data().drop_vars("dim3")
    expected.attrs["foo"] = "bar"
    with create_tmp_file() as tmp_file:
        expected.to_netcdf(tmp_file, engine="h5netcdf")

        with open(tmp_file, "rb") as f:
            with open_dataset(f, engine="h5netcdf") as actual:
                assert_identical(expected, actual)

            f.seek(0)
            with open_dataset(f) as actual:
                assert_identical(expected, actual)

            f.seek(0)
            with BytesIO(f.read()) as bio:
                with open_dataset(bio, engine="h5netcdf") as actual:
                    assert_identical(expected, actual)

            f.seek(0)
            with pytest.raises(TypeError, match="not a valid NetCDF 3"):
              open_dataset(f, engine="scipy")

/mnt/e/Git/xarray/xarray/tests/test_backends.py:2887:


/mnt/e/Git/xarray/xarray/backends/api.py:483: in open_dataset backend = plugins.get_backend(engine)


engine = 'scipy'

def get_backend(engine):
    """Select open_dataset method based on current engine."""
    if isinstance(engine, str):
        engines = list_engines()
        if engine not in engines:
          raise ValueError(
                f"unrecognized engine {engine} must be one of: {list(engines)}"
            )

E ValueError: unrecognized engine scipy must be one of: ['netcdf4', 'h5netcdf', 'store']

/mnt/e/Git/xarray/xarray/backends/plugins.py:156: ValueError ================================================= short test summary info ================================================= FAILED xarray/tests/test_backends.py::TestH5NetCDFFileObject::test_open_fileobj - ValueError: unrecognized engine scipy ... =========================== 1 failed, 458 passed, 818 skipped, 18 xfailed, 6 xpassed in 25.08s =========================== ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  added netCDF4 requirement to failing tests 935692190
872918817 https://github.com/pydata/xarray/issues/4985#issuecomment-872918817 https://api.github.com/repos/pydata/xarray/issues/4985 MDEyOklzc3VlQ29tbWVudDg3MjkxODgxNw== feefladder 33122845 2021-07-02T11:11:56Z 2021-07-02T11:11:56Z CONTRIBUTOR

take

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Tests fail when installing h5netcdf without netcdf4 819937730
808037776 https://github.com/pydata/xarray/issues/4880#issuecomment-808037776 https://api.github.com/repos/pydata/xarray/issues/4880 MDEyOklzc3VlQ29tbWVudDgwODAzNzc3Ng== feefladder 33122845 2021-03-26T08:34:27Z 2021-03-26T08:34:27Z CONTRIBUTOR

Yes, I created that issue :), should this then be closed?

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Datetime as coordinaets does not convert back to datetime (returns int) 803075280

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