home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

6 rows where author_association = "MEMBER" and issue = 1258338848 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 2

  • kmuehlbauer 3
  • keewis 3

issue 1

  • Publish nightly releases to TestPyPI · 6 ✖

author_association 1

  • MEMBER · 6 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
1148370109 https://github.com/pydata/xarray/issues/6659#issuecomment-1148370109 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85Ecry9 keewis 14808389 2022-06-07T08:37:02Z 2022-06-07T08:37:02Z MEMBER

it finally works: https://test.pypi.org/project/xarray/#history

Thanks a lot for the help, @kmuehlbauer!

{
    "total_count": 1,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 1,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848
1148285401 https://github.com/pydata/xarray/issues/6659#issuecomment-1148285401 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85EcXHZ kmuehlbauer 5821660 2022-06-07T07:15:38Z 2022-06-07T07:15:38Z MEMBER

@keewis git restore -SW . will remove the changes to pyproject.toml.

{
    "total_count": 2,
    "+1": 2,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848
1147972460 https://github.com/pydata/xarray/issues/6659#issuecomment-1147972460 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85EbKts keewis 14808389 2022-06-06T21:55:29Z 2022-06-06T21:55:29Z MEMBER

apparently, local_scheme = "no-local-scheme" is broken when using setuptools>=60. I'll pin setuptools<60 in CI, hopefully that helps

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848
1145773168 https://github.com/pydata/xarray/issues/6659#issuecomment-1145773168 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85ESxxw kmuehlbauer 5821660 2022-06-03T09:23:01Z 2022-06-03T09:23:01Z MEMBER

To make updating pyproject.toml less of a hack (the setuptools_scm section might not be the last section in the future) we can probably read the file with tomli, add that setting and write it back using tomli_w.

That's for sure more reliable. Didn't think about that in the first place.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848
1145765288 https://github.com/pydata/xarray/issues/6659#issuecomment-1145765288 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85ESv2o keewis 14808389 2022-06-03T09:13:31Z 2022-06-03T09:20:53Z MEMBER

ooh, that looks great!

To make updating pyproject.toml less of a hack (the setuptools_scm section might not be the last section in the future) we can probably read the file with tomli, add that setting and write it back using tomli_w.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848
1145622185 https://github.com/pydata/xarray/issues/6659#issuecomment-1145622185 https://api.github.com/repos/pydata/xarray/issues/6659 IC_kwDOAMm_X85ESM6p kmuehlbauer 5821660 2022-06-03T06:14:57Z 2022-06-03T06:14:57Z MEMBER

It's more a workaround. Maybe it's suitable for xarray.

In a project I maintain I'm doing the following before creation of tarball and wheels when uploading to TestPyPI.

```bash

remove local appendix (+gXXXXXXXX)

$ echo 'local_scheme = "no-local-version"' >> pyproject.toml

prevent dirty-flag

$ git update-index --assume-unchanged pyproject.toml ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Publish nightly releases to TestPyPI 1258338848

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