home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 2501846

✎ 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
1327730887 PR_kwDOAMm_X85PI5DH 7786 closed 0 Use canonical name for set_horizonalalignment over alias set_ha ksunden 2501846 Matplotlib has recently introduced type hints on our main version (due to be released with mpl v3.8 in a couple months) xref matplotlib/matplotlib#24976 As part of this, the dynamically generated aliases of certain functions are not included in static type hints (since they are dynamic). So, a type hinted codebase should prefer the canonical names so that they can be type checked. I encourage maintainers over here to run type checking with our new type hints, as this is not the only thing flagged. Much of the remaining flags have to do with interactions with 3D axes, which are currently not type hinted in mpl (along with the rest of mpl_toolkits, for that matter). Feel free to ping me if you have any questions regarding mpl's type hints and interactions here. Partly opening this as a "reach out early, so you don't get surprised by a release breaking CI" (and can hopefully sort it out before that a bit more incrementally). 2023-04-25T20:45:26Z 2023-04-26T15:10:47Z 2023-04-26T15:10:44Z 2023-04-26T15:10:43Z 0f4e99d036b0d6d76a3271e6191eacbc9922662f     0 10e3a27260ce2d49051476709788965cbe68f7df 7c53a94f53c4c01155c432c8b287f3d0b318a7c7 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/7786  
1516581009 PR_kwDOAMm_X85aZTCR 8186 closed 0 Update contourf call check for mpl 3.8 ksunden 2501846 <!-- Feel free to remove check-list items aren't relevant to your change --> In doing the final checks prior to release of Matplotlib 3.8.0, we noticed that there were two test failures here due to the return type/artist tree changing for contourf calls (while the type is reasonably back-compatible itself, we have moved from a "QuadContourSet makes a PathCollection" to "QuadContourSet is a full artist/collection" xref matplotlib/matplotlib#25247 Unfortunately this change is not really possible to make with deprecations/etc, so we are kind of stuck just making it. However, in practice, it has only ever seemed to matter for test code which is pretty easy to make work (like here),r so we have decided to go forward with the change. 2023-09-15T01:30:40Z 2023-09-16T19:28:06Z 2023-09-16T19:28:06Z 2023-09-16T19:28:06Z 45678bf469761adcfe6b318eb33f79b36de898ef     0 c7391fca66e1fd24b175cfffab692af20628fe2b c537238ae9ac905b8fe9a4630d03a329cab3a1df CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/8186  

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