pull_requests
3 rows where user = 6883049
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
42474619 | MDExOlB1bGxSZXF1ZXN0NDI0NzQ2MTk= | 532 | closed | 0 | Add a --drop-variables flag to xray.open_dataset to exclude certain variables | markelg 6883049 | Related to issue #457. I implemented this flag following the instructions given by @shoyer in the issue thread. I have a decent amount of experience with python, but this is the first pull request I set up in GitHub, and I am a begginer with git (more used to svn). I was careful but please check that I did not mess up something ; ) | 2015-08-14T16:43:23Z | 2015-08-19T18:27:35Z | 2015-08-19T18:27:35Z | 2015-08-19T18:27:35Z | cd2f10872ffc6952747f8d0b130594236863eecd | 0 | 3406de3afad2b8f7c0d8a8d4a374da7e48f76dca | 55477fe3d13987ea2f93d796e83f4ce0ca85cfed | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/532 | ||||
1044674288 | PR_kwDOAMm_X84-RHbw | 6981 | closed | 0 | Support the new compression argument in netCDF4 > 1.6.0 | markelg 6883049 | <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #6929 - [x] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` | 2022-09-02T09:06:42Z | 2023-10-30T16:37:58Z | 2022-12-01T22:41:51Z | 2022-12-01T22:41:51Z | 92e7cb5b21a6dee7f7333c66e41233205c543bc1 | 0 | a3310f960be4d6052984c85d5f2c11891c48016b | 88e1aeab1752abc74be9e63f2d6738d7b279b1c0 | 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": "Support the new compression argument in netCDF4 > 1.6.0 (#6981)", "commit_message": "* Added support for the new compression argument in netCDF4 > 1.6.0\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* Check both netCDF4 and libnetcdf versions to see if they support the new\r\ncompression arguments.\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* Remove checking netCDF4 and libnetcdf versions. We let them fail if they do not match compression/zlib arguments.\r\n\r\n* Added test after merging with the new version of the file.\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/6981 | |||
1251378494 | PR_kwDOAMm_X85KloU- | 7551 | closed | 0 | Support for the new compression arguments. | markelg 6883049 | Use a dict for the arguments and update it with the encoding, so all variables are passed. <!-- Feel free to remove check-list items aren't relevant to your change --> - [X] Closes #7388 - [x] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` | 2023-02-23T09:32:56Z | 2023-12-21T15:24:34Z | 2023-12-21T15:24:16Z | 2023-12-21T15:24:16Z | a04900d724f05b3ab8757144bcd23845ff5eee94 | 0 | bc74cd834034c72f83ea5a75ae1af8d3fcdd72c1 | b3890a3859993dc53064ff14c2362bb0134b7c56 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/7551 |
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]);