summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug_report.yml
blob: 1c2f8aa8399e29d47f1e122aedd90683272240ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Bug Report
description: File a bug report
title: "[BUG] "
body:
  - type: markdown
    attributes:
      value: |
        **PLEASE READ THIS FIRST:**
        - DO NOT use the bug and feature tracker for general questions and support requests.
        Use the [`cython-users`](https://groups.google.com/g/cython-users) mailing list instead.
        It has a wider audience, so you get more and better answers.
        - Did you search for SIMILAR ISSUES already?
        Please do, it helps to save us precious time that we otherwise could not invest into development.
        - Did you try the LATEST MASTER BRANCH or pre-release?
        It might already have what you want to report.
        Specifically, the legacy stable 0.29.x release series receives only important low-risk bug fixes.
        Also see the [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst) regarding recent changes
  - type: textarea
    id: describe
    attributes:
      label: "Describe the bug"
      description: "A clear and concise description of what the bug is."
      placeholder: "Tell us what you see!"
    validations:
      required: true
  - type: textarea
    id: reproduce
    attributes:
      label: "Code to reproduce the behaviour:"
      value: |
        ```cython
        # example code
        ```
  - type: textarea
    id: expected
    attributes:
      label: "Expected behaviour"
      description: "A clear and concise description of what you expected to happen."
  - type: textarea
    id: environment
    attributes:
      label: Environment
      description: "please complete the following information"
      value: |
        OS: [e.g. Linux, Windows, macOS]
        Python version [e.g. 3.10.2]
        Cython version [e.g. 3.0.0a11]
    validations:
      required: true
  - type: textarea
    id: context
    attributes:
      label: Additional context
      description: Add any other context about the problem here.