Skip to content

Commit 06abe56

Browse files
committed
Only one issue template
1 parent 6337de5 commit 06abe56

File tree

4 files changed

+55
-121
lines changed

4 files changed

+55
-121
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/custom.md

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

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/ISSUE_TEMPLATE/issue.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
name: Issue
3+
about: Report an issue
4+
title: ""
5+
labels:
6+
assignees: ''
7+
8+
---
9+
<!--
10+
INSTRUCTIONS
11+
============
12+
13+
Please read these instructions before submitting your issue.
14+
15+
If this is the first time you interact on this project, welcome to the community!
16+
In this case, please give a bit of information on how you are using litgen (which project, how long you have been using it, etc.).
17+
18+
Please check existing [open issues](../issues) and [discussions](../discussions) for similar reports before submitting a new one.
19+
20+
21+
Describe the issue
22+
------------------
23+
Include here a clear and concise description of what the issue is. Include logs or code snippets if necessary.
24+
25+
26+
Version & Platform
27+
------------------
28+
Mention
29+
- the version of litgen you are using (e.g., a version number or commit hash and/or date)
30+
- the type of bindings you are using: nanobind or pybind11
31+
32+
Minimal reproducible example
33+
----------------------------
34+
Please, please do try to provide a minimal reproducible example that reproduces the issue.
35+
36+
For example, you can use the following code block:
37+
38+
```python
39+
import litgen
40+
41+
code = """
42+
void foo(); // include your own C++ code here (make it short)
43+
"""
44+
45+
options = litgen.LitgenOptions()
46+
# Customize options if needed
47+
48+
generated_code = litgen.generate_code(options, code)
49+
50+
print(generated_code.pydef_code) # or generated_code.stub_code
51+
```
52+
53+
Explain how the generated code should look, and how it actually looks.
54+
55+
-->

0 commit comments

Comments
 (0)