-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from openscm/copier-update
Update copier
- Loading branch information
Showing
23 changed files
with
233 additions
and
218 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
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,41 @@ | ||
--- | ||
name: Bug report | ||
about: Report a bug | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Describe the bug | ||
<!--- A clear and concise description of what the bug is. --> | ||
|
||
## Failing Test | ||
<!--- | ||
Please put the code (ideally in the form of a unit test) which fails below. | ||
e.g. | ||
```python | ||
def test_bug_12(): | ||
# Python code here which fails because of the bug | ||
# This is best if other developers can simply copy and paste this test in | ||
# order to run it | ||
``` | ||
--> | ||
|
||
## Expected behavior | ||
<!--- A clear and concise description of what you expected to happen. --> | ||
|
||
## Screenshots | ||
<!--- If applicable, add screenshots to help explain your problem. --> | ||
|
||
## System | ||
<!--- Please complete the following information. --> | ||
|
||
- OS: [e.g. Windows, Linux, macOS] | ||
- Python version [e.g. Python 3.11] | ||
- Please also upload your `poetry.lock` file (first run `poetry lock` to make sure the lock file is up-to-date) | ||
|
||
## Additional context | ||
<!--- Add any other context about the problem here. --> |
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,21 @@ | ||
--- | ||
name: Default | ||
about: Report an issue or problem | ||
title: '' | ||
labels: triage | ||
assignees: '' | ||
|
||
--- | ||
|
||
## The problem | ||
<!--- Useful to breakdown to "As a [persona], I [want to do], so that [reason] --> | ||
|
||
## Definition of "done" | ||
<!--- | ||
What are the things that must be true in order to close this issue | ||
We find that describing these as dot points works well. | ||
--> | ||
|
||
## Additional context | ||
<!--- Add any additional context can go here --> |
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,21 +1,32 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
about: Request a feature or suggest an idea for this project | ||
title: '' | ||
labels: feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
## The motivation | ||
|
||
A clear and concise description of what the problem is. Ex. It's annoying that I always have to [...] | ||
<!--- Useful to breakdown to "As a [persona], I [want to do], so that [reason] --> | ||
|
||
**Describe the solution you'd like** | ||
## The proposed solution | ||
|
||
A clear and concise description of the solution you would like to see. | ||
<!--- | ||
If you'd like, please provide a description of the solution you would like to see | ||
**Describe alternatives you've considered** | ||
If you don't have any ideas for the solution, simply leave this blank | ||
--> | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
## Alternatives | ||
|
||
**Additional context** | ||
<!--- | ||
If you've considered any alternatives, please describe them here | ||
Add any other context or screenshots about the feature request here. | ||
If you don't have any alternatives, simply leave this blank | ||
--> | ||
|
||
## Additional context | ||
|
||
<!--- Add any additional context can go here --> |
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,9 @@ | ||
# Pull request | ||
## Description | ||
|
||
## Checklist | ||
|
||
Please confirm that this pull request has done the following: | ||
|
||
- [ ] Tests added | ||
- [ ] Documentation added (where applicable) | ||
- [ ] Example added (either to an existing notebook or as a new notebook, where applicable) | ||
- [ ] Added to `changelog/` | ||
- [ ] Changelog item added to `changelog/` |
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 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 |
---|---|---|
|
@@ -32,4 +32,4 @@ jobs: | |
shell: bash -l {0} | ||
run: | | ||
which python | ||
python scripts/test_install.py | ||
python scripts/test-install.py |
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 |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
# Jupyter cache | ||
.jupyter_cache | ||
|
||
# Ruff cache | ||
.ruff_cache | ||
|
||
# Licence check | ||
licence-check.txt | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Updated to newer copier template version |
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.