blob: 813898b21688ffaee915bf6e9b72e6362204d604 (
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
56
57
|
name: Bug Report
description: paramiko appears to be doing something wrong
title: "[BUG] - <title>"
labels: ["Bug"]
body:
- type: dropdown
id: usage_posture
attributes:
label: Are you using paramiko as a client or server?
multiple: false
options:
- Client
- Server
- Both
validations:
required: true
- type: dropdown
id: features
attributes:
label: What features aren't working right?
description: Select as many as are relevant
multiple: true
options:
- SSH
- SFTP
- Keys/auth
- known_hosts
- sshconfig
- Something else
validations:
required: true
- type: input
id: paramiko_version
attributes:
label: What version(s) of paramiko are you working with?
description: |
Find out with `$ python -c "import paramiko; print(paramiko.__version__)"`
placeholder: |
Example: 3.1.0
validations:
required: true
- type: input
id: python_version
attributes:
label: What version(s) of Python are you working with?
description: |
Find out with `$ python -V`
placeholder: |
Example: 3.11.3
validations:
required: true
|