Skip to content

Commit fd9b0ca

Browse files
authored
Merge pull request #1938 from mejrs/issues
Update issue templates
2 parents ace68b3 + 702597a commit fd9b0ca

File tree

5 files changed

+110
-18
lines changed

5 files changed

+110
-18
lines changed

.github/ISSUE_TEMPLATE/blank_issue.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
name: 📝 Blank Issue
3+
about: Create a blank issue.
4+
---

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: 🐛 Bug Report
2+
description: Create a bug report
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to fill out this bug report!
9+
Please fill out the form below...
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Bug Description
14+
description: Please provide a clear and concise description of what the bug is.
15+
placeholder: The bug is...
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: reproduce
20+
attributes:
21+
label: Steps to Reproduce
22+
description: Provide steps to reproduce this bug.
23+
placeholder: |
24+
1.
25+
2.
26+
3.
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: debug
31+
attributes:
32+
label: Backtrace
33+
description: If your bug produces a backtrace, please include it here.
34+
render: shell
35+
36+
- type: input
37+
id: os_version
38+
attributes:
39+
label: Your operating system and version
40+
validations:
41+
required: true
42+
- type: input
43+
id: py_version
44+
attributes:
45+
label: Your Python version (`python --version`)
46+
placeholder: ex. Python 3.10.0
47+
validations:
48+
required: true
49+
- type: input
50+
id: rust_version
51+
attributes:
52+
label: Your Rust version (`rustc --version`)
53+
placeholder: ex. rustc 1.55.0 (c8dfcfe04 2021-09-06)
54+
validations:
55+
required: true
56+
- type: input
57+
id: pyo3_version
58+
attributes:
59+
label: Your PyO3 version
60+
placeholder: ex. 0.14.0
61+
validations:
62+
required: true
63+
- type: textarea
64+
id: install_method
65+
attributes:
66+
label: How did you install python? Did you use a virtualenv?
67+
placeholder: |
68+
apt
69+
pyenv
70+
pacman
71+
brew
72+
python.org installer
73+
microsoft store
74+
etc...
75+
validations:
76+
required: true
77+
- type: textarea
78+
id: additional-info
79+
attributes:
80+
label: Additional Info
81+
description: Any additional info that you think might be useful or relevant to this bug

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: ❓ Question
4+
url: https://github.com/PyO3/pyo3/discussions
5+
about: Ask and answer questions about PyO3 on Discussions
6+
- name: 🔧 Troubleshooting
7+
url: https://github.com/PyO3/pyo3/discussions
8+
about: For troubleshooting help, see the Discussions
9+
- name: 👋 Chat
10+
url: https://gitter.im/PyO3/Lobby
11+
about: Engage with PyO3's users and developers on Gitter
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: 💡 Feature request
3+
about: Suggest an idea for this project
4+
labels: [enhancement]
5+
---
6+
7+
<!--
8+
Thank you for sharing your idea!
9+
10+
Please describe your idea in depth. If you're not sure what to write, imagine the following:
11+
- How is this important to you? How would you use it?
12+
- Can you think of any alternatives?
13+
- Do you have any ideas about how it can be implemented? Are you willing/able to implement it? Do you need mentoring?
14+
-->

.github/issue_template.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)