home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

3 rows where milestone = 3008859

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: user, 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
157856511 MDExOlB1bGxSZXF1ZXN0MTU3ODU2NTEx 1776 closed 0 [WIP] Fix pydap array wrapper fujiisoup 6815844 - [x] Closes #1775 (remove if there is no corresponding issue, which should only be the case for minor changes) - [x] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) - [x] Passes ``git diff upstream/master **/*py | flake8 --diff`` (remove if you did not edit any Python files) - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API (remove if this change should not be visible to users, e.g., if it is an internal clean-up, or if this is part of a larger project that will be documented later) I am trying to fix #1775, but tests are still failing. Any help would be appreciated. 2017-12-12T15:22:07Z 2019-09-25T15:44:19Z 2018-01-09T01:48:13Z 2018-01-09T01:48:13Z ab0db05a58fd47fe895d1a85c09c37d96263d3b7   0.10.3 3008859 0 e27c043adb96e027ac51e9d1abdf88e20db8dd7b c368ee734945bbc736c33463ea561311bbdc1e9b MEMBER   xarray 13221727 https://github.com/pydata/xarray/pull/1776  
159286994 MDExOlB1bGxSZXF1ZXN0MTU5Mjg2OTk0 1793 closed 0 fix distributed writes jhamman 2443309 - [x] Closes #1464 - [x] Tests added - [x] Tests passed - [x] Passes ``git diff upstream/master **/*py | flake8 --diff`` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API Right now, I've just modified the dask distributed integration tests so we can all see the [failing tests](https://travis-ci.org/jhamman/xarray/jobs/317603224#L4400-L4571). I'm happy to push this further but I thought I'd see if either @shoyer or @mrocklin have an idea where to start? 2017-12-19T22:24:41Z 2018-03-13T15:32:54Z 2018-03-10T15:43:18Z 2018-03-10T15:43:18Z 2f590f7d7f34c7dfddea4d1d4f8877bca081b601   0.10.3 3008859 0 3c2ffbf5b85299a59e0fa12fdec8dff03346527f 870e4eaf1895cfeffdc27dab61ad739e67133777 MEMBER   xarray 13221727 https://github.com/pydata/xarray/pull/1793  
160165627 MDExOlB1bGxSZXF1ZXN0MTYwMTY1NjI3 1800 closed 0 WIP: Performance improvements for zarr backend jhamman 2443309 - [x] Closes #https://github.com/pangeo-data/pangeo/issues/48 - [x] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) - [x] Passes ``git diff upstream/master **/*py | flake8 --diff`` (remove if you did not edit any Python files) - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API (remove if this change should not be visible to users, e.g., if it is an internal clean-up, or if this is part of a larger project that will be documented later) This is building on top of #1799. Based on the suggestion from @alimanfoo in https://github.com/pangeo-data/pangeo/issues/48#issuecomment-353807691, I have reworked the handling of attributes in the zarr backend. There is more to do here, particularly in the `set_dimensions` arena but this is giving almost a 2x speedup in writing to GCP. cc @rabernat, @mrocklin and @alimanfoo 2017-12-26T20:37:45Z 2018-01-24T14:56:57Z 2018-01-24T14:55:52Z 2018-01-24T14:55:52Z 0a0593d78fad6c0b776d4c3c6b32a24b2bdfba35   0.10.3 3008859 0 96996eff5fbbd07ea87003762bc27befd70bbf58 f3deb2f2495220af819021b199a5305b0d62ef36 MEMBER   xarray 13221727 https://github.com/pydata/xarray/pull/1800  

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