Skip to content

Commit 9b5a476

Browse files
authored
Merge pull request #2938 from ianhi/issue-template
create issue templates
2 parents 1d8d50b + 19d7ca4 commit 9b5a476

File tree

3 files changed

+118
-0
lines changed

3 files changed

+118
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug report
2+
about: Create a report to help us improve
3+
---
4+
5+
<!--
6+
Welcome! Before creating a new issue please search for relevant issues and recreate the issue in a fresh environment:
7+
8+
1. conda create -n ipywidgets-test --override-channels --strict-channel-priority -c conda-forge -c anaconda jupyterlab nodejs=12
9+
2. conda activate ipywidgets-test
10+
3. pip install --upgrade ipywidgets
11+
# If using jupyterlab
12+
4. jupyter labextension install @jupyter-widgets/jupyterlab-manager
13+
-->
14+
15+
## Description
16+
17+
<!--Describe the bug clearly and concisely. Include screenshots/gifs if possible-->
18+
19+
## Reproduce
20+
21+
<!--Describe step-by-step instructions to reproduce the behavior-->
22+
23+
1. Go to '...'
24+
2. Click on '...'
25+
3. Scroll down to '...'
26+
4. See error '...'
27+
28+
<!--Describe how you diagnosed the issue. See the guidelines at
29+
https://jupyterlab.readthedocs.io/en/latest/getting_started/issue.html -->
30+
31+
## Expected behavior
32+
33+
<!--Describe what you expected to happen-->
34+
35+
## Context
36+
37+
<!--Complete the following for context, and add any other relevant context-->
38+
39+
- ipywidgets version <!-- import ipywidgets; print(ipywidgets.__version__)-->
40+
- Operating System and version:
41+
- Browser and version:
42+
43+
<details><summary>Troubleshoot Output</summary>
44+
<pre>
45+
Paste the output from running `jupyter troubleshoot` from the command line here.
46+
You may want to sanitize the paths in the output.
47+
</pre>
48+
</details>
49+
50+
<details><summary>Command Line Output</summary>
51+
<pre>
52+
Paste the output from your command line running `jupyter lab` (or `jupyter notebook` if you use notebook) here, use `--debug` if possible.
53+
</pre>
54+
</details>
55+
56+
<details><summary>Browser Output</summary>
57+
<pre>
58+
Paste the output from your browser Javascript console here.
59+
</pre>
60+
</details>
61+
62+
### If using JupyterLab
63+
- JupyterLab version:
64+
65+
<details><summary>Installed Labextensions</summary>
66+
<pre>
67+
Paste the output from your command line running `jupyter labextension list`.
68+
</pre>
69+
</details>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Custom Widget
3+
about: Issues or questions related to developing a custom widget
4+
labels: type:custom-widget
5+
---
6+
7+
<!--
8+
If this is a:
9+
10+
Bug Report: Please add the relevant pieces of information from the bug report template to this issue (https://github.com/jupyterlab/jupyterlab/issues/new?template=bug_report.md)
11+
12+
Question: Great! Thanks for asking here, since someone else will be able to find the answer more easily in the future. Please try to provide as much detail as you can about what you would like to accomplish and what you have tried.
13+
14+
Feature Request: Please follow the template from https://github.com/jupyterlab/jupyterlab/issues/new?template=feature_request.md
15+
-->
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a way to improve ipywidgets
4+
labels: type:Enhancement
5+
---
6+
7+
<!--
8+
Welcome! Thanks for thinking of a way to improve ipywidgets. If this solves a problem for you, then it probably solves that problem for lots of people! So the whole community will benefit from this request.
9+
10+
11+
Before creating a new feature request please search the issues for relevant feature requests.
12+
-->
13+
14+
### Problem
15+
16+
<!-- Provide a clear and concise description of what problem this feature will solve. For example:
17+
18+
* I'm always frustrated when [...] because [...]
19+
* I would like it if [...] happened when I [...] because [...]
20+
-->
21+
22+
### Proposed Solution
23+
24+
<!-- Provide a clear and concise description of a way to accomplish what you want. For example:
25+
26+
* Add an option so that when [...] [...] will happen
27+
-->
28+
29+
### Additional context
30+
31+
<!-- Add any other context or screenshots about the feature request here. You can also include links to examples of other programs that have something similar to your request. For example:
32+
33+
* Another project [...] solved this by [...]
34+
-->

0 commit comments

Comments
 (0)