forked from nsidc/earthaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
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 eafile-method-resolution
- Loading branch information
Showing
72 changed files
with
10,041 additions
and
6,176 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
notebooks/** linguist-documentation | ||
docs/** linguist-documentation | ||
tests/unit/fixtures/vcr_cassettes/** linguist-documentation | ||
tests/unit/fixtures/vcr_cassettes/** linguist-documentation |
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,67 @@ | ||
name: 🐞 Bug | ||
description: > | ||
A bug is an issue that differs from documentation or has unexpected behavior. | ||
title: "[BUG] {{ title }}" | ||
labels: | ||
- Bug | ||
- Needs Triage | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is this issue already tracked somewhere, or is this a new report? | ||
description: Check if a similar issue has already been reported before submitting a new one. | ||
options: | ||
- label: I've reviewed existing issues and couldn't find a duplicate for this problem. | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Current Behavior | ||
description: A concise description of what you're experiencing. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: | | ||
Steps to Reproduce | ||
1. In this environment... | ||
2. With this config... | ||
3. Run '...' | ||
4. See error... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Environment | ||
description: | | ||
Examples: | ||
- **OS**: Ubuntu 20.04 | ||
- **Python**: 3.11.2 | ||
value: | | ||
- OS: | ||
- Python: | ||
render: markdown | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional Context | ||
description: | | ||
Any additional information that might be helpful in resolving this issue, such as: | ||
- Error messages or stack traces | ||
- Relevant configuration files or code snippets | ||
Tip: You can attach files or images by clicking this area to highlight it and then dragging files in. | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: 🌟 Community support | ||
url: https://github.com/nsidc/earthaccess/discussions/categories/q-a | ||
about: Explore this section to ask questions, share insights, and connect with others about Earthdata access and usage. | ||
- name: 💡 Suggest a new feature | ||
url: https://github.com/nsidc/earthaccess/discussions/new?category=ideas | ||
about: Got a brilliant idea? Share your innovative suggestions to help us make amazing improvements! |
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,24 @@ | ||
name: Install earthaccess Python package | ||
description: Install earthaccess Python package and testing dependencies | ||
|
||
inputs: | ||
python-version: | ||
description: Version of Python to use | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
cache: pip | ||
|
||
- name: Display full python version | ||
shell: bash | ||
id: full-python-version | ||
run: echo "version=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")" >> $GITHUB_OUTPUT | ||
|
||
- name: Install package and test dependencies | ||
shell: bash | ||
run: pip install .[test] |
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,62 @@ | ||
<!-- | ||
Replace this text, including the symbols above and below it, with descriptive text about | ||
the change you are proposing. Please include a reference to any issues addressed or | ||
resolved in that text, for example "resolves #1". | ||
--> | ||
|
||
<!-- | ||
IMPORTANT: As a contributor, we would like as much help as you can offer, but we only | ||
expect you to complete the steps in the "PR draft checklist" below. Maintainers are | ||
willing and ready to help pick it up from there! | ||
Please start by opening this Pull Request as a "draft". You can do this by | ||
clicking the arrow on the right side of the green "Create pull request" button. While | ||
your pull request is in "draft" state, maintainers will assume the PR isn't ready for | ||
their attention unless they are specifically summoned using GitHub's @ system. | ||
Follow the draft checklist below to move the PR out of draft state. If you accidentally | ||
created the PR as a non-draft, don't worry, you can still change it to a draft using the | ||
"Convert to draft" button on the right side panel under the "Reviewers" section. | ||
--> | ||
|
||
<details><summary>Pull Request (PR) draft checklist - click to expand</summary> | ||
|
||
- [ ] Please review our | ||
[contributing documentation](https://earthaccess.readthedocs.io/en/latest/contributing/) | ||
before getting started. | ||
- [ ] Ensure an issue exists representing the problem being solved in this PR. | ||
- [ ] Populate a descriptive title. For example, instead of "Updated README.md", use a | ||
title such as "Add testing details to the contributor section of the README". | ||
Example PRs: [#763](https://github.com/nsidc/earthaccess/pull/763) | ||
- [ ] Populate the body of the pull request with: | ||
- A clear description of the change you are proposing. | ||
- Links to any issues resolved by this PR with text in the PR description, for | ||
example `closes #1`. See | ||
[GitHub docs - Linking a pull request to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue). | ||
- [ ] Update `CHANGELOG.md` with details about your change in a section titled | ||
`## Unreleased`. If such a section does not exist, please create one. Follow | ||
[Common Changelog](https://common-changelog.org/) for your additions. | ||
Example PRs: [#763](https://github.com/nsidc/earthaccess/pull/763) | ||
- [ ] Update the documentation and/or the `README.md` with details of changes to the | ||
earthaccess interface, if any. Consider new environment variables, function names, | ||
decorators, etc. | ||
|
||
Click the "Ready for review" button at the bottom of the "Conversation" tab in GitHub | ||
once these requirements are fulfilled. Don't worry if you see any test failures in | ||
GitHub at this point! | ||
|
||
</details> | ||
|
||
<details><summary>Pull Request (PR) merge checklist - click to expand</summary> | ||
|
||
Please do your best to complete these requirements! If you need help with any of these | ||
requirements, you can ping the `@nsidc/earthaccess-support` team in a comment and we | ||
will help you out! | ||
|
||
- [ ] Add unit tests for any new features. | ||
- [ ] Apply formatting and linting autofixes. You can add a GitHub comment in this Pull | ||
Request containing "pre-commit.ci autofix" to automate this. | ||
- [ ] Ensure all automated PR checks (seen at the bottom of the "conversation" tab) pass. | ||
- [ ] Get at least one approving review. | ||
|
||
</details> |
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
Oops, something went wrong.