forked from pydata/xarray
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into duckarray-tests
* main: (313 commits) Update whats-new Release notes for v2022.06.0 (pydata#6815) Drop multi-indexes when assigning to a multi-indexed variable (pydata#6798) Support NumPy array API (experimental) (pydata#6804) Add cumsum to DatasetGroupBy (pydata#6525) Refactor groupby binary ops code. (pydata#6789) Update DataArray.rename + docu (pydata#6665) Switch to T_DataArray and T_Dataset in concat (pydata#6784) Fix typos found by codespell (pydata#6794) Update groupby attrs tests (pydata#6787) Update map_blocks to use chunksizes property. (pydata#6776) Fix `DataArrayRolling.__iter__` with `center=True` (pydata#6744) [test-upstream] Update flox repo URL (pydata#6780) Move _infer_meta_data and _parse_size to utils (pydata#6779) Make the `sel` error more descriptive when `method` is unset (pydata#6774) Move Rolling tests to their own testing module (pydata#6777) [pre-commit.ci] pre-commit autoupdate (pydata#6773) move da and ds fixtures to conftest.py (pydata#6730) Bump EnricoMi/publish-unit-test-result-action from 1 to 2 (pydata#6770) Type shape methods (pydata#6767) ...
- Loading branch information
Showing
227 changed files
with
26,076 additions
and
12,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ dependencies: | |
- netcdf4 | ||
- numba | ||
- numpy | ||
- packaging | ||
- pandas | ||
- pint | ||
- pip | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: 🐛 Bug Report | ||
description: File a bug report to help us improve | ||
labels: [bug, "needs triage"] | ||
body: | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: | | ||
Thanks for reporting a bug! Please describe what you were trying to get done. | ||
Tell us what happened, what went wrong. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: what-did-you-expect-to-happen | ||
attributes: | ||
label: What did you expect to happen? | ||
description: | | ||
Describe what you expected to happen. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: sample-code | ||
attributes: | ||
label: Minimal Complete Verifiable Example | ||
description: | | ||
Minimal, self-contained copy-pastable example that demonstrates the issue. This will be automatically formatted into code, so no need for markdown backticks. | ||
render: Python | ||
|
||
- type: checkboxes | ||
id: mvce-checkboxes | ||
attributes: | ||
label: MVCE confirmation | ||
description: | | ||
Please confirm that the bug report is in an excellent state, so we can understand & fix it quickly & efficiently. For more details, check out: | ||
- [Minimal Complete Verifiable Examples](https://stackoverflow.com/help/mcve) | ||
- [Craft Minimal Bug Reports](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) | ||
options: | ||
- label: Minimal example — the example is as focused as reasonably possible to demonstrate the underlying issue in xarray. | ||
- label: Complete example — the example is self-contained, including all data and the text of any traceback. | ||
- label: Verifiable example — the example copy & pastes into an IPython prompt or [Binder notebook](https://mybinder.org/v2/gh/pydata/xarray/main?urlpath=lab/tree/doc/examples/blank_template.ipynb), returning the result. | ||
- label: New issue — a search of GitHub Issues suggests this is not a duplicate. | ||
|
||
- type: textarea | ||
id: log-output | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant output. This will be automatically formatted into code, so no need for markdown backticks. | ||
render: Python | ||
|
||
- type: textarea | ||
id: extra | ||
attributes: | ||
label: Anything else we need to know? | ||
description: | | ||
Please describe any other information you want to share. | ||
- type: textarea | ||
id: show-versions | ||
attributes: | ||
label: Environment | ||
description: | | ||
Paste the output of `xr.show_versions()` between the `<details>` tags, leaving an empty line following the opening tag. | ||
value: | | ||
<details> | ||
</details> | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Usage question | ||
- name: ❓ Usage question | ||
url: https://github.com/pydata/xarray/discussions | ||
about: | | ||
Ask questions and discuss with other community members here. | ||
If you have a question like "How do I concatenate a list of datasets?" then | ||
please include a self-contained reproducible example if possible. | ||
- name: 🗺️ Raster analysis usage question | ||
url: https://github.com/corteva/rioxarray/discussions | ||
about: | | ||
If you are using the rioxarray extension (engine='rasterio'), or have questions about | ||
raster analysis such as geospatial formats, coordinate reprojection, etc., | ||
please use the rioxarray discussion forum. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 📝 Issue | ||
description: General issue, that's not a bug report. | ||
labels: ["needs triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please describe your issue here. | ||
- type: textarea | ||
id: issue-description | ||
attributes: | ||
label: What is your issue? | ||
description: | | ||
Thank you for filing an issue! Please give us further information on how we can help you. | ||
placeholder: Please describe your issue. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 💡 Feature Request | ||
description: Suggest an idea for xarray | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Is your feature request related to a problem? | ||
description: | | ||
Please do a quick search of existing issues to make sure that this has not been asked before. | ||
Please provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: | | ||
A clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: | | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: | | ||
Add any other context about the feature request here. | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.