issues
3 rows where comments = 9, type = "pull" and user = 35968931 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: draft, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1945654275 | PR_kwDOAMm_X85c7HL_ | 8319 | Move parallelcompat and chunkmanagers to NamedArray | TomNicholas 35968931 | closed | 0 | 9 | 2023-10-16T16:34:26Z | 2024-02-12T22:09:24Z | 2024-02-12T22:09:24Z | MEMBER | 0 | pydata/xarray/pulls/8319 | @dcherian I got to this point before realizing that simply moving
I personally think that simply moving parallelcompat makes sense so long as you expect people to use chunked cc @andersy005
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/8319/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | |||||
| 1084220684 | PR_kwDOAMm_X84wDPg5 | 6086 | Type protocol for internal variable mapping | TomNicholas 35968931 | closed | 0 | 9 | 2021-12-19T23:32:04Z | 2023-12-06T17:20:48Z | 2023-12-06T17:19:30Z | MEMBER | 1 | pydata/xarray/pulls/6086 | In #5961 and #6083 I've been experimenting extending I've been writing out new storage class implementations in those PRs, but on Friday @shoyer suggested that I could instead simply alter the allowed type for The idea is to define a protocol in xarray which specifies the structural subtyping behaviour of any custom variable storage class that I might want to set as In practice this means writing a protocol which describes the type behaviour of all the methods on So far I've written out a 1) The typing behaviour of overloaded methods, specifically
2) Making functions which expect a
3) I'm expecting to get a runtime problem whenever we Once that passes mypy I will write a test that checks that if I define my own custom variable storage class I can @max-sixty this is entirely a typing challenge, so I'm tagging you in case you're interested :)
EDIT: Also using |
{
"url": "https://api.github.com/repos/pydata/xarray/issues/6086/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} |
xarray 13221727 | pull | |||||
| 936045730 | MDExOlB1bGxSZXF1ZXN0NjgyODYzMjgz | 5568 | Add to_numpy() and as_numpy() methods | TomNicholas 35968931 | closed | 0 | 9 | 2021-07-02T20:17:40Z | 2021-07-21T22:06:47Z | 2021-07-21T21:42:48Z | MEMBER | 0 | pydata/xarray/pulls/5568 |
|
{
"url": "https://api.github.com/repos/pydata/xarray/issues/5568/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]);