issue_comments
16 rows where author_association = "MEMBER", issue = 521887948 and user = 14808389 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: reactions, created_at (date), updated_at (date)
issue 1
- Silence sphinx warnings · 16 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
555777096 | https://github.com/pydata/xarray/pull/3516#issuecomment-555777096 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTc3NzA5Ng== | keewis 14808389 | 2019-11-20T00:20:43Z | 2019-11-20T00:20:43Z | MEMBER | no, sorry, I don't have a twitter account. Can you use the github handle? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555561105 | https://github.com/pydata/xarray/pull/3516#issuecomment-555561105 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTU2MTEwNQ== | keewis 14808389 | 2019-11-19T15:32:03Z | 2019-11-19T15:32:03Z | MEMBER | okay, go ahead |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555499639 | https://github.com/pydata/xarray/pull/3516#issuecomment-555499639 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTQ5OTYzOQ== | keewis 14808389 | 2019-11-19T13:08:08Z | 2019-11-19T15:31:47Z | MEMBER | Enabling is blocked by these warnings, so we can only do that once we silenced them. After that, I would be fine with a merge. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555279577 | https://github.com/pydata/xarray/pull/3516#issuecomment-555279577 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTI3OTU3Nw== | keewis 14808389 | 2019-11-19T00:50:09Z | 2019-11-19T13:06:22Z | MEMBER | there are three warnings (locally for me five) of the same kind left before we could switch on |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555089313 | https://github.com/pydata/xarray/pull/3516#issuecomment-555089313 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTA4OTMxMw== | keewis 14808389 | 2019-11-18T16:17:07Z | 2019-11-18T16:17:07Z | MEMBER | it will print all warnings, then return a non-zero error code (or zero if there was no warning). Of course, if there are actual errors, it will still fail (at least, that is what the help on |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555083696 | https://github.com/pydata/xarray/pull/3516#issuecomment-555083696 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTA4MzY5Ng== | keewis 14808389 | 2019-11-18T16:05:48Z | 2019-11-18T16:05:48Z | MEMBER | re warnings checking: I'd start with something like |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554815126 | https://github.com/pydata/xarray/pull/3516#issuecomment-554815126 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDgxNTEyNg== | keewis 14808389 | 2019-11-18T01:37:31Z | 2019-11-18T15:33:29Z | MEMBER | re sections in Looking at the links to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
555033923 | https://github.com/pydata/xarray/pull/3516#issuecomment-555033923 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NTAzMzkyMw== | keewis 14808389 | 2019-11-18T14:17:36Z | 2019-11-18T14:17:36Z | MEMBER | I think I found the reasons for the numpy docstring warnings: 1. some of the numpy functions include signatures. I think that is because they are written in C? In the signature there is an asterisk which sphinx misinterprets. 2. the numpy docstrings are indented which somehow confuses sphinx, but only for some of the functions 3. some references are labeled, but not used all of these can be silenced by rewriting the docstrings: ```python def _create_op(name): func = _UFuncDispatcher(name) func.name = name doc = textwrap.dedent(getattr(_np, name).doc) if doc.strip().startswith(name): start_location = doc.strip().find("\n\n") doc = doc[start_location + 2:]
``` However, I'm not sure this is a good idea. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554808148 | https://github.com/pydata/xarray/pull/3516#issuecomment-554808148 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDgwODE0OA== | keewis 14808389 | 2019-11-18T00:48:25Z | 2019-11-18T00:50:58Z | MEMBER | now the only warnings left in non-nitpicky mode are the ones in the numpy docstrings and these:
Edit: there are also 5 lines related to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554794029 | https://github.com/pydata/xarray/pull/3516#issuecomment-554794029 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDc5NDAyOQ== | keewis 14808389 | 2019-11-17T22:21:03Z | 2019-11-17T22:21:03Z | MEMBER | there were not enough entries to actually require regex-replace, so I did it by hand. How would you handle links to |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554768259 | https://github.com/pydata/xarray/pull/3516#issuecomment-554768259 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDc2ODI1OQ== | keewis 14808389 | 2019-11-17T17:35:55Z | 2019-11-17T17:38:45Z | MEMBER | for author names in |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554686360 | https://github.com/pydata/xarray/pull/3516#issuecomment-554686360 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDY4NjM2MA== | keewis 14808389 | 2019-11-17T00:01:34Z | 2019-11-17T00:01:34Z | MEMBER | the CI will probably work when pushing new commits (or one might try to remove No, I was trying to set up readthedocs for this branch which I thought could make discussing the changes a bit easier. However, the current build fails because conda ends up consuming too much memory. My impression was that this is a common problem that was somehow fixed for master. |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554640238 | https://github.com/pydata/xarray/pull/3516#issuecomment-554640238 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDY0MDIzOA== | keewis 14808389 | 2019-11-16T14:02:52Z | 2019-11-16T14:02:52Z | MEMBER | unfortunately, those are not the majority of warnings and this would also cause warnings for deprecated methods (like I also created a preview page, but that currently fails. Can someone help me with the build errors (excessive memory consumption)? |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
554591837 | https://github.com/pydata/xarray/pull/3516#issuecomment-554591837 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1NDU5MTgzNw== | keewis 14808389 | 2019-11-16T01:49:47Z | 2019-11-16T01:55:04Z | MEMBER | does anyone have an idea about what to do about broken links in |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
553618337 | https://github.com/pydata/xarray/pull/3516#issuecomment-553618337 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1MzYxODMzNw== | keewis 14808389 | 2019-11-13T21:45:44Z | 2019-11-13T21:45:44Z | MEMBER | I took a shot at using Also, while trying to fix the nit-picky warnings, I found this: ```python
Implementing |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 | |
553392712 | https://github.com/pydata/xarray/pull/3516#issuecomment-553392712 | https://api.github.com/repos/pydata/xarray/issues/3516 | MDEyOklzc3VlQ29tbWVudDU1MzM5MjcxMg== | keewis 14808389 | 2019-11-13T12:56:50Z | 2019-11-13T18:29:16Z | MEMBER | CI: I think it's possible using I also noticed the CI uses numpy: sure, but updating upstream is only a long term fix, we will still have to somehow ignore these warnings if we want to check for new warnings using CI. Edit: the warning about files not included by any toctree can be silenced by adding |
{ "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Silence sphinx warnings 521887948 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1