pull_requests
2 rows where user = 10647082
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
816772901 | PR_kwDOAMm_X84wrvcl | 6145 | closed | 0 | Remove pd.Panel checks | mroeschke 10647082 | Since it appears the min pandas version is 1.1, these `Panel` checks should never be true. | 2022-01-08T01:46:20Z | 2022-01-09T05:18:15Z | 2022-01-09T05:15:12Z | 2022-01-09T05:15:12Z | a98309c6849b5c2d7bcb31fcf3751c6abfaee792 | 0 | 99baa74615556d2fe6c3a7324ec1fdb095dc364e | e056cacdca55cc9d9118c830ca622ea965ebcdef | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/6145 | ||||
1147870780 | PR_kwDOAMm_X85Eax48 | 7361 | closed | 0 | COMPAT: Adjust CFTimeIndex.get_loc for pandas 2.0 deprecation enforcement | mroeschke 10647082 | With the upcoming pandas 2.0 release, we are enforcing a deprecation in `pd.Index.get_loc` to remove `method` and `tolerance`. Just in case `get_loc` isn't 100% compatible with `get_indexer`, I structured the `elif` to use `get_loc` as much as possible. Let me know if any other adjustments are needed | 2022-12-06T01:42:01Z | 2022-12-14T21:11:13Z | 2022-12-14T21:03:40Z | 2022-12-14T21:03:40Z | 80c3e8ecc34961b05c01eb1a0c231f97d595fd07 | 0 | f44f15f516991af97eef202fc85375b0a5a304de | 021c73e12cccb06c017ce6420dd043a0cfbf9f08 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/7361 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);