home / github

Menu
  • GraphQL API
  • Search all tables

commits

Table actions
  • GraphQL API for commits

10 rows where author = 36361292 and repo = 13221727 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_committer, committer, author_date (date), committer_date (date)

repo 1

  • xarray · 10 ✖

author 1

  • MaximilianR · 10 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
84ee8d765aec8a7a48a8163fe0cb3253f9ffd702 Merge pull request #1145 from SixtyCapital/rolling-count Rolling count 2017-06-26T18:43:06Z 2017-06-26T18:43:06Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
ba6351b14d6a6ba2d12b8ae8aacc9c4b76bdc003 Merge pull request #1404 from fmaussion/deprec-pandas-tslib Fix pandas.tslib deprecation warning 2017-05-11T16:46:23Z 2017-05-11T16:46:23Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
1cafb14cb4726da14abfb8976d22e6e2b5f3ae24 Exclude .DS_Store Exclude .DS_Store files from the release tarball 2017-02-22T21:47:32Z 2017-02-22T21:47:32Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
ed71fbb248e758eb73d912462890f7672574b81e Merge pull request #1256 from SixtyCapital/no-unbox-periods PERF: Override equals in IndexVariable 2017-02-09T15:31:14Z 2017-02-09T15:31:14Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
9dcfa733b307c74a561e72b945331269a5b93126 Pytest assert functions (#1147) * RFC for initial pytest assert function * functions all filled out * tweaks * only run invalid args test with bn * move existing assert funcs to wrappers of new funcs * typo * exclude DS_Store * allclose * WIP * a few fixes to existing tests * should have realized earlier to change the test func rather than each instance * patch tests even if potentially broken * note on skipping import tests * remove old functions * test change to get 3.3 build to pass * api and whatsnew * typo * final changes * final final change 2016-12-22T19:20:07Z 2016-12-22T19:20:07Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 MaximilianR 36361292 shoyer 1217238
aec3e8e8208f557864feb8f3e6a1c8c6cc200bc5 Merge pull request #1175 from SixtyCapital/33-end End support for py3.3? 2016-12-21T06:21:16Z 2016-12-21T06:21:16Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
1615a0f65c331ef5f7c6be83eccf9a1c6796fa77 Merge pull request #1157 from SixtyCapital/perf-pindex PERF: Use len rather than size 2016-12-09T18:36:50Z 2016-12-09T18:36:50Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 MaximilianR 36361292 web-flow 19864447
d01077ae38ca9d48560517a9ce721be2c6c580d5 Minor test fixes (#1146) 2016-12-01T01:23:50Z 2016-12-01T01:23:50Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 MaximilianR 36361292 shoyer 1217238
78283563900e0f7acfd9264db8cfba9117efa169 is scalar less exclusive (#854) 2016-08-12T06:06:18Z 2016-08-12T06:06:18Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 MaximilianR 36361292 shoyer 1217238
50f647339ed05dd3feba6acf099b234621469937 WIP for transitioning from Panel docs (#832) 2016-08-08T17:08:22Z 2016-08-08T17:08:22Z Maximilian Roos 3d83865c384b3c57ef94655eebe4826a9aa22e9e Stephan Hoyer f10b21bed2846b879806f87039b77245b18e7671 xarray 13221727 MaximilianR 36361292 shoyer 1217238

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
    ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
    ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
    ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
    ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
    ON [commits] ([raw_author]);
Powered by Datasette · Queries took 59.431ms · About: xarray-datasette