Skip to content

Commit af81566

Browse files
Issue templates (#687)
* Issue templates * Require full conda list Co-authored-by: Adam Urbańczyk <[email protected]>
1 parent a9e8670 commit af81566

File tree

5 files changed

+105
-0
lines changed

5 files changed

+105
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Generic issue
3+
about: Use this if none of the more specific templates fit your issue
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
<!-- If you have a question, please first make sure it is not already answered in the README.md or https://cadquery.readthedocs.io -->

.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: false
2+
contact_links:
3+
- name: Online documentation
4+
url: https://cadquery.readthedocs.io/
5+
about: CadQuery's extensive online documentation
6+
- name: Discord channel
7+
url: https://discord.gg/qz3uAdF
8+
about: For more casual discussion and help
9+
- name: Google group
10+
url: https://groups.google.com/forum/#!forum/cadquery
11+
about: Mailing list for CadQuery
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Exception/crash report
3+
about: You have a specific exception or crash to report
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Bug reports that are not about a specific exception or crash are also welcome, feel free to use the generic issue template instead. -->
11+
<!-- This template is just a suggestion, it does not have to be followed exactly. -->
12+
13+
## To Reproduce
14+
15+
<!-- If possible, please give a minimal example that triggers the error. -->
16+
```python
17+
```
18+
19+
<!-- Screenshots of the model prior to the error are often helpful. -->
20+
21+
## Backtrace
22+
23+
<!-- Backtraces from CQ-editor's GUI can often be shortened. We prefer a full backtrace from running your code as a script in the Python interpreter. -->
24+
```
25+
```
26+
27+
## Environment
28+
29+
OS:
30+
31+
Was CadQuery installed using Conda?: <!-- Note Conda is the only official installation method. If you are not using Conda, please provide details of your build/install/packaging methods, since they are often relevant to bugs and crashes. -->
32+
Output of `conda list` from your active Conda environment:
33+
```
34+
```
35+
36+
Using: <!-- CQ-Editor, Jupyter Notebook, Python interpreter, cq-cli or something else? -->
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Modelling question
3+
about: You want to know how to perform a modelling operation
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Questions that are not answered in
11+
12+
* [our README.md](https://github.com/CadQuery/cadquery/blob/master/README.md)
13+
* [online docs](https://cadquery.readthedocs.io/en/latest/)
14+
* previous issues
15+
16+
are appreciated.
17+
18+
If you want to discuss something in a more casual environment, we have other options under [Getting help in the README.md](https://github.com/CadQuery/cadquery#getting-help). There are also additional examples in the [cadquery-contrib repository](https://github.com/CadQuery/cadquery-contrib).
19+
-->
20+
21+
<!-- We are all volunteers here, you can help us help you by making this question quick to answer. Minimal examples, trimmed of all unreleated code are appreciated. It also helps if you provide code that can be cut and pasted into CQ-Editor. ie. instead of:
22+
23+
> I have a box, how to I fillet a top corner?
24+
25+
we would prefer:
26+
27+
> ```python
28+
> w0 = (
29+
> cq.Workplane()
30+
> .box(1, 1, 1)
31+
> )
32+
> ```
33+
> How do I fillet a single corner?
34+
35+
-->
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: OCCT feature request
3+
about: Suggest an implementation of an existing OCCT feature
4+
title: ''
5+
labels: OCC feature, enhancement
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Describe what use cases this would have and any other relevant information. -->
11+
12+
Links to OCCT documentation:
13+
* <!-- https://old.opencascade.com/doc/occt-7.5.0/refman/html/ -->

0 commit comments

Comments
 (0)