home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 11289391

✎ 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
813176836 PR_kwDOAMm_X84weBgE 6132 closed 0 Check for just `...`, rather than `[...]` in `da.stack` StanczakDominik 11289391 - [x] Closes #6051 - [x] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - not quite just yet, as I'm not 100% sure in what category you'd put it! `_stack_once` seemed like a reasonable place to put this check, just going from the trace of where the test failed. I also saw mypy failures during the local pre-commit step, but chose to ignore them for now given #6024. They seemed to pop up in unrelated areas, anyway. 2022-01-03T14:13:28Z 2022-01-04T04:57:12Z 2022-01-03T23:05:23Z 2022-01-03T23:05:22Z 60754fdbc4ecd9eb3c0978e82635c6d43e8d485b     0 5fb4bbed4b0c445f0f656e297f4b134f53ee12eb c5a2c687c0cd0e68e21ad606b8ba8868eb08eb81 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/6132  
919411535 PR_kwDOAMm_X842zRtP 6515 closed 0 Add allow_failures flag to Dataset.curve_fit StanczakDominik 11289391 - [x] Closes #6317 - [ ] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` For some reason, my grepping doesn't seem to show any existing tests for `curve_fit`...? 2022-04-26T13:17:18Z 2023-06-16T03:15:09Z 2023-06-16T03:15:09Z   d201ec6b1b1c4e5186af2c1f2ca67f86c007c5fc     0 f302336589cf6c923c861f4d8254828f045eda31 d1e4164f3961d7bbb3eb79037e96cae14f7182f8 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/6515  

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