issues
3 rows where state = "closed", type = "pull" and user = 367900 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date)
| id | node_id | number | title | user | state | locked | assignee | milestone | comments | created_at | updated_at ▲ | closed_at | author_association | active_lock_reason | draft | pull_request | body | reactions | performed_via_github_app | state_reason | repo | type |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1216178209 | PR_kwDOAMm_X8420Do_ | 6516 | Use new importlib.metadata.entry_points interface where available | bcbnz 367900 | closed | 0 | 1 | 2022-04-26T16:06:35Z | 2022-04-27T06:01:08Z | 2022-04-27T01:07:51Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/6516 | With Python 3.10, the entry_points() method returning a SelectableGroups dict interface was deprecated. The preferred way is to now filter by group through a keyword argument.
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/6516/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | |||||
| 856901056 | MDExOlB1bGxSZXF1ZXN0NjE0NDA4MzQz | 5149 | Convert attribute and dimension names to strings when generating HTML repr | bcbnz 367900 | closed | 0 | 5 | 2021-04-13T12:14:03Z | 2021-05-04T03:39:00Z | 2021-05-04T03:38:53Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/5149 | The standard repr() already handled non-string attribute names, but the HTML formatter failed when trying to escape HTML entitites in non-string names. This just calls str() before escape(). It also includes tests for Dataset, DataArray and Variable. Reported in #5146. ~~Note that there may be a need to do the same for dimension names if they are allowed to be strings. Currently dimensions must be created as strings but can later be renamed to non-strings, see #5148.~~ Dimensions can be non-str, updated.
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/5149/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | |||||
| 808558647 | MDExOlB1bGxSZXF1ZXN0NTczNTc5NzUx | 4911 | Fix behaviour of min_count in reducing functions | bcbnz 367900 | closed | 0 | 6 | 2021-02-15T13:53:34Z | 2021-02-19T08:12:39Z | 2021-02-19T08:12:02Z | CONTRIBUTOR | 0 | pydata/xarray/pulls/4911 | The first commit modifies existing tests to check Dask-backed arrays are not computed. It also adds some specific checks that the correct result (NaN or a number as appropriate) is returned and some tests for checking membership of The second commit fixes these failures:
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/4911/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [issues] (
[id] INTEGER PRIMARY KEY,
[node_id] TEXT,
[number] INTEGER,
[title] TEXT,
[user] INTEGER REFERENCES [users]([id]),
[state] TEXT,
[locked] INTEGER,
[assignee] INTEGER REFERENCES [users]([id]),
[milestone] INTEGER REFERENCES [milestones]([id]),
[comments] INTEGER,
[created_at] TEXT,
[updated_at] TEXT,
[closed_at] TEXT,
[author_association] TEXT,
[active_lock_reason] TEXT,
[draft] INTEGER,
[pull_request] TEXT,
[body] TEXT,
[reactions] TEXT,
[performed_via_github_app] TEXT,
[state_reason] TEXT,
[repo] INTEGER REFERENCES [repos]([id]),
[type] TEXT
);
CREATE INDEX [idx_issues_repo]
ON [issues] ([repo]);
CREATE INDEX [idx_issues_milestone]
ON [issues] ([milestone]);
CREATE INDEX [idx_issues_assignee]
ON [issues] ([assignee]);
CREATE INDEX [idx_issues_user]
ON [issues] ([user]);