-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
4,709 additions
and
2,588 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,48 @@ | ||
--- | ||
|
||
name: Bug Report | ||
about: Create a bug report to help us improve staircase | ||
title: "BUG:" | ||
labels: "Bug" | ||
|
||
--- | ||
|
||
- [ ] I have checked that this issue has not already been reported. | ||
|
||
- [ ] I have confirmed this bug exists on the latest version of staircase. | ||
|
||
--- | ||
|
||
**Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. | ||
|
||
#### Code Sample, a copy-pastable example | ||
|
||
```python | ||
# Your code here | ||
|
||
``` | ||
|
||
#### Problem description | ||
|
||
[this should explain **why** the current behaviour is a problem and why the expected output is a better solution] | ||
|
||
#### Expected Output | ||
|
||
#### Dependency Versions`` | ||
|
||
Please run the following code: | ||
|
||
```python | ||
import staircase | ||
import pandas | ||
import numpy | ||
|
||
for pkg in (staircase, pandas, numpy): | ||
print(pkg.__name__, pkg.__version__) | ||
``` | ||
|
||
<details> | ||
|
||
[paste the output here leaving a blank line after the details tag] | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
|
||
name: Documentation Improvement | ||
about: Report wrong or missing documentation | ||
title: "DOC:" | ||
labels: "Documentation" | ||
|
||
--- | ||
|
||
#### Location of the documentation | ||
|
||
[this should provide the location of the documentation, e.g. "https://www.staircase.dev/en/latest/reference/api/staircase.Stairs.fillna.html"] | ||
|
||
**Note**: You can check the latest versions of the docs on `master` [here](https://www.staircase.dev/en/master/). | ||
|
||
#### Documentation problem | ||
|
||
[this should provide a description of what documentation you believe needs to be fixed/improved] | ||
|
||
#### Suggested fix for documentation | ||
|
||
[this should explain the suggested fix and **why** it's better than the existing 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,25 @@ | ||
--- | ||
|
||
name: Feature Request | ||
about: Suggest an enhancement for staircase | ||
title: "ENH:" | ||
labels: "Enhancement" | ||
|
||
--- | ||
|
||
#### Is your feature request related to a problem? | ||
|
||
[if so, what is the problem? What do you want to do?"] | ||
|
||
#### Describe the solution you'd like | ||
|
||
[a DETAILED description of the feature request] | ||
|
||
#### Additional context | ||
|
||
[add any other context, code examples, or references to existing implementations about the feature request here] | ||
|
||
```python | ||
# Your code here, if applicable | ||
|
||
``` |
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,4 @@ | ||
- [ ] closes #xxxx | ||
- [ ] tests added / passed | ||
- [ ] ensure all linting tests pass | ||
- [ ] changelog entry |
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,14 @@ | ||
name: Assign | ||
on: | ||
issue_comment: | ||
types: created | ||
|
||
jobs: | ||
one: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- if: github.event.comment.body == 'take' | ||
name: | ||
run: | | ||
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" | ||
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees |
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.