home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

3 rows where user = 23738400

✎ View and edit SQL

This data as json, CSV (advanced)

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

id ▼ node_id number state locked title user body created_at updated_at closed_at merged_at merge_commit_sha assignee milestone draft head base author_association auto_merge repo url merged_by
424249328 MDExOlB1bGxSZXF1ZXN0NDI0MjQ5MzI4 4103 closed 0 keep attrs in reset_index OriolAbril 23738400 Modifies the code in `reset_index` to keep attributes when converting an indexing coordinate to non indexing coordinate. I have added tests for single index for both dataarray and dataset. Not sure if both are needed as they end up calling the same base function. Regarding multiindex, I think it is not possible to keep the metadata as it is removed when creating the multiindex/stacking. - [x] Closes #4101 - [x] Tests added - [x] Passes `isort -rc . && black . && mypy . && flake8` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2020-05-28T05:00:50Z 2020-06-05T19:42:54Z 2020-06-05T19:39:10Z 2020-06-05T19:39:10Z c07160dd2d627a021e58515cbd7753c11fb56d94     0 f8f0ecb5e27c1e7b868cd0f8078320957eb32464 e5cc19cd8f8a69e0743f230f5bf51b7778a0ff96 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4103  
905009840 PR_kwDOAMm_X8418Vqw 6464 closed 0 Add xarray-einstats to ecosystem page OriolAbril 23738400 Adds a mention of [xarray-einstats](https://xarray-einstats.readthedocs.io/en/latest/) to the ecosystem page. Related to #3322. 2022-04-09T17:12:37Z 2022-04-09T19:40:39Z 2022-04-09T19:37:01Z 2022-04-09T19:37:00Z 9b6ed58aa8b46d4397efad2d72af8c1de4025956     0 9193656c057987341f28e4e4c36d24e08aed2810 24d9f3ecc92bbdd78236cd745a3b490f9490452b CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/6464  
1215855274 PR_kwDOAMm_X85IeHqq 7475 closed 0 Update error message when saving multiindex OriolAbril 23738400 I have updated the error message that gets printed when trying to save a multiindex following some discussion in an ArviZ repo with @dcherian. - [x] Related to #1077 and https://github.com/arviz-devs/arviz/issues/2165 - [ ] Tests added: haven't but can do if necessary using `pytest.raises(..., match)` 2023-01-24T23:44:14Z 2023-02-25T11:57:59Z 2023-02-24T20:16:43Z 2023-02-24T20:16:43Z 41949209b6cfb0d5c25d000b1e0c5739b513385c     0 009bff09209038e23d0755a1a510a7034b92c848 ec1d328f501de503a5c6b7e8ae5195a2bc0cc045 CONTRIBUTOR
{
    "enabled_by": {
        "login": "dcherian",
        "id": 2448579,
        "node_id": "MDQ6VXNlcjI0NDg1Nzk=",
        "avatar_url": "https://avatars.githubusercontent.com/u/2448579?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/dcherian",
        "html_url": "https://github.com/dcherian",
        "followers_url": "https://api.github.com/users/dcherian/followers",
        "following_url": "https://api.github.com/users/dcherian/following{/other_user}",
        "gists_url": "https://api.github.com/users/dcherian/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/dcherian/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/dcherian/subscriptions",
        "organizations_url": "https://api.github.com/users/dcherian/orgs",
        "repos_url": "https://api.github.com/users/dcherian/repos",
        "events_url": "https://api.github.com/users/dcherian/events{/privacy}",
        "received_events_url": "https://api.github.com/users/dcherian/received_events",
        "type": "User",
        "site_admin": false
    },
    "merge_method": "squash",
    "commit_title": "Update error message when saving multiindex (#7475)",
    "commit_message": "* update error message on saving multiindex\r\n\r\n* [pre-commit.ci] auto fixes from pre-commit.com hooks\r\n\r\nfor more information, see https://pre-commit.ci\r\n\r\n---------\r\n\r\nCo-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>\r\nCo-authored-by: Deepak Cherian <dcherian@users.noreply.github.com>"
}
xarray 13221727 https://github.com/pydata/xarray/pull/7475  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [pull_requests] (
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [number] INTEGER,
   [state] TEXT,
   [locked] INTEGER,
   [title] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [body] TEXT,
   [created_at] TEXT,
   [updated_at] TEXT,
   [closed_at] TEXT,
   [merged_at] TEXT,
   [merge_commit_sha] TEXT,
   [assignee] INTEGER REFERENCES [users]([id]),
   [milestone] INTEGER REFERENCES [milestones]([id]),
   [draft] INTEGER,
   [head] TEXT,
   [base] TEXT,
   [author_association] TEXT,
   [auto_merge] TEXT,
   [repo] INTEGER REFERENCES [repos]([id]),
   [url] TEXT,
   [merged_by] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_pull_requests_merged_by]
    ON [pull_requests] ([merged_by]);
CREATE INDEX [idx_pull_requests_repo]
    ON [pull_requests] ([repo]);
CREATE INDEX [idx_pull_requests_milestone]
    ON [pull_requests] ([milestone]);
CREATE INDEX [idx_pull_requests_assignee]
    ON [pull_requests] ([assignee]);
CREATE INDEX [idx_pull_requests_user]
    ON [pull_requests] ([user]);
Powered by Datasette · Queries took 22.144ms · About: xarray-datasette