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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
name: Bug Report
description: File a bug report
title: "[Bug]: "
body:
- type: markdown
attributes:
value: |
Thanks for your time to fill out this bug report!
- type: input
id: contact
attributes:
label: Contact details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Provide a clear and concise description of what the bug is.
placeholder: >
Tell us a description of the bug.
validations:
required: true
- type: textarea
id: step-to-reproduce
attributes:
label: Steps to reproduce
description: Provide details of how to reproduce the bug.
placeholder: >
ex. 1. Go to '...'
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: What did you expect to happen?
placeholder: >
ex. I expected '...' to happen
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
description: What did actually happen?
placeholder: >
ex. Instead '...' happened
validations:
required: true
- type: dropdown
id: operating-system
attributes:
label: Operating system
description: Which operating system are you using?
options:
- Windows
- macOS
- Linux
default: 0
validations:
required: true
- type: dropdown
id: python-version
attributes:
label: Python version
description: Which version of Python are you using?
options:
- Python 3.14
- Python 3.13
- Python 3.12
- Python 3.11
- Python 3.10
- Python 3.9
- Python 3.8
- Python 3.7
- Python 3.6
- Python 3.5
default: 1
validations:
required: true
- type: dropdown
id: pycm-version
attributes:
label: PyCM version
description: Which version of PyCM are you using?
options:
- PyCM 4.6
- PyCM 4.5
- PyCM 4.4
- PyCM 4.3
- PyCM 4.2
- PyCM 4.1
- PyCM 4.0
- PyCM 3.9
- PyCM 3.8
- PyCM 3.7
- PyCM 3.6
- PyCM 3.5
- PyCM 3.4
- PyCM 3.3
- PyCM 3.2
- PyCM 3.1
- PyCM 3.0
- PyCM 2.9
- PyCM 2.8
- PyCM 2.7
- PyCM 2.6
- PyCM 2.5
- PyCM 2.4
- PyCM 2.3
- PyCM 2.2
- PyCM 2.1
- PyCM 2.0
- PyCM 1.9
- PyCM 1.8
- PyCM 1.7
- PyCM 1.6
- PyCM 1.5
- PyCM 1.4
- PyCM 1.3
- PyCM 1.2
- PyCM 1.1
- PyCM 1.0
- PyCM 0.9.5
- PyCM 0.9
- PyCM 0.8.6
- PyCM 0.8.5
- PyCM 0.8.1
- PyCM 0.7
- PyCM 0.6
- PyCM 0.5
- PyCM 0.4
- PyCM 0.3
- PyCM 0.2
- PyCM 0.1
default: 0
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
|