home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

3 rows where author = 367900 sorted by author_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

repo 1

  • xarray 3

author 1

  • bcbnz · 3 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
819573208e144640bf4ff7a13d5b2cc08b8e3ef7 Use new importlib.metadata.entry_points interface where available. (#6516) With Python 3.10, the entry_points() method returning a SelectableGroups dict interface was deprecated. The preferred way is to now filter by group through a keyword argument. Fixes GH6514. 2022-04-27T01:07:50Z 2022-04-27T01:07:50Z Blair Bonnett c67e67f6d6f19d5cc9bcf98a82af5f6a678d899a GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 bcbnz 367900 web-flow 19864447
1c198a191127c601d091213c4b3292a8bb3054e1 Convert attribute and dimension names to strings when generating HTML repr (#5149) * Convert attribute keys to strings when generating HTML repr. The standard repr() already handled non-string attribute names, but the HTML formatter failed when trying to escape HTML entitites in non-string names. This just calls str() before escape(). It also includes tests for Dataset, DataArray and Variable. Related issue is #5146. * Convert dimension names to strings when generating HTML reprs. Not currently working for datasets as dimension sorting does not yet handle non-str keys. Co-authored-by: Keewis <keewis@posteo.de> 2021-05-04T03:38:52Z 2021-05-04T03:38:52Z Blair Bonnett c67e67f6d6f19d5cc9bcf98a82af5f6a678d899a GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 bcbnz 367900 web-flow 19864447
d61efb687a9b2989ad22c70334b8cc2e32251d16 Fix behaviour of min_count in reducing functions (#4911) * Add more tests for reducing functions with min_count * Make sure Dask-backed arrays are not computed. * Check some specific examples give the correct output. * Run membership tests on xarray.core.dtypes.NAT_TYPES * Fix behaviour of min_count in reducing functions. * Fix mask checks in xarray.core.nanops._maybe_null_out to run lazily for Dask-backed arrays. * Change xarray.core.dtypes.NAT_TYPES to a set (it is only used for membership checks). * Add dtypes to NAT_TYPES rather than instances. Previously np.float64 was returning true from `dtype in NAT_TYPES` which resulted in min_count being ignored when reducing over all axes. * Add whatsnew entry. * Improvements from review. * use duck_array_ops.where instead of np.where * add docstring and whatsnew messages about sum/prod on integer arrays with skipna=True and min_count != None now returning a float array. Co-authored-by: Deepak Cherian <dcherian@users.noreply.github.com> 2021-02-19T08:12:01Z 2021-02-19T08:12:01Z Blair Bonnett c67e67f6d6f19d5cc9bcf98a82af5f6a678d899a GitHub cd792325681cbad9f663f2879d8b69f1edbb678f xarray 13221727 bcbnz 367900 web-flow 19864447

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