mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 14:49:57 +00:00
This PR adds issue templates, which help two recurring issues: * Users forget to tell us whether they are using the Node or Python SDK * Issues don't get appropriate tags This doesn't force the use of the templates. Because we set `blank_issues_enabled: true`, users can still create a custom issue.
34 lines
969 B
YAML
34 lines
969 B
YAML
name: Bug Report - Python
|
|
description: File a bug report
|
|
title: "bug(python): "
|
|
labels: [bug, python]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: LanceDB version
|
|
description: What version of LanceDB are you using? `python -c "import lancedb; print(lancedb.__version__)"`.
|
|
placeholder: v0.3.2
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Also tell us, what did you expect to happen?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Are there known steps to reproduce?
|
|
description: |
|
|
Let us know how to reproduce the bug and we may be able to fix it more
|
|
quickly. This is not required, but it is helpful.
|
|
validations:
|
|
required: false
|