-
Notifications
You must be signed in to change notification settings - Fork 8
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' of github.com:HinodeXRT/xrtpy into idl-instructions
- Loading branch information
Showing
307 changed files
with
390,147 additions
and
869 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 🐛 Bug Report | ||
description: Report a problem that you encountered when using XRTpy | ||
labels: [Bug] | ||
body: | ||
|
||
- type: markdown | ||
attributes: | ||
value: > | ||
Thank you for submitting a bug report — we really appreciate it! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Bug description | ||
description: > | ||
Please describe what you were doing and what went wrong. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-outcome | ||
attributes: | ||
label: Expected outcome | ||
description: > | ||
What did you expect to happen instead? (optional) | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: minimal-example | ||
attributes: | ||
label: Minimal complete verifiable example | ||
description: > | ||
Provide a minimal self-contained example to help us reproduce the | ||
bug, along with any relevant output. This will be automatically | ||
formatted into code, so no need for Markdown backticks. (optional, | ||
but incredibly helpful!) | ||
render: Python | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: > | ||
Please provide any additional context that would help us | ||
understand and fix the bug. (optional) | ||
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,39 @@ | ||
name: 💡 Feature Request | ||
description: | | ||
Help shape the future of XRTpy by requesting a new feature | ||
labels: [Feature request] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature description | ||
description: > | ||
What new capability would you like added to XRTpy? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Motivation | ||
description: > | ||
What are the benefits from adding this feature? What problems or | ||
limitations would be solved? (optional) | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Implementation strategy | ||
description: > | ||
How might we go about implementing this new capability? (optional) | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: > | ||
Please provide any additional helpful details here. (optional) | ||
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,11 @@ | ||
name: 📝 General Issue | ||
description: Create an issue that doesn't fit in the other categories | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: > | ||
Please describe the issue here. | ||
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
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 |
---|---|---|
|
@@ -141,3 +141,6 @@ version.py | |
#ignore mac files | ||
.DS_store | ||
.DS_Store | ||
|
||
# local directory | ||
idl_routines/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html | ||
|
||
version: 2 | ||
|
||
formats: | ||
- htmlzip | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: '3.11' | ||
apt_packages: | ||
- graphviz | ||
jobs: | ||
post_build: | ||
- echo $'\n'For help deciphering documentation build error messages, see:$'\n\n'\ \ https://docs.plasmapy.org/en/latest/contributing/doc_guide.html#troubleshooting | ||
|
||
python: | ||
version: '3.8' | ||
install: | ||
- requirements: requirements/install.txt | ||
- requirements: requirements/docs.txt | ||
- method: setuptools | ||
- method: pip | ||
path: . | ||
system_packages: true | ||
extra_requirements: | ||
- docs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,6 @@ recursive-include licenses * | |
prune build | ||
prune docs/_build | ||
prune docs/api | ||
prune tests | ||
|
||
global-exclude *.pyc *.o |
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 @@ | ||
Removed support for Python 3.8. XRTpy now requires Python 3.9 or newer. |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.