Browse Source
🔧 Update the Question template to ask for the Pydantic version (#10000)
pull/10005/head
Sebastián Ramírez
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
14 additions and
0 deletions
-
.github/DISCUSSION_TEMPLATE/questions.yml
|
|
@ -123,6 +123,20 @@ body: |
|
|
|
``` |
|
|
|
validations: |
|
|
|
required: true |
|
|
|
- type: input |
|
|
|
id: pydantic-version |
|
|
|
attributes: |
|
|
|
label: Pydantic Version |
|
|
|
description: | |
|
|
|
What Pydantic version are you using? |
|
|
|
|
|
|
|
You can find the Pydantic version with: |
|
|
|
|
|
|
|
```bash |
|
|
|
python -c "import pydantic; print(pydantic.version.VERSION)" |
|
|
|
``` |
|
|
|
validations: |
|
|
|
required: true |
|
|
|
- type: input |
|
|
|
id: python-version |
|
|
|
attributes: |
|
|
|