8d6d616791
<!-- Thank you for contributing to uv! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary <!-- What's the purpose of the change? What does it do, and why? --> This PR updates the issue templates to recommend using the `uv self version` command instead of `uv version` for retrieving uv's own version information. The `uv version` command is intended to show the current project's version (from pyproject.toml), not the uv tool version, which leads to confusion when users try to report issues. ## Test Plan <!-- How was it tested? --> n/a
32 lines
921 B
YAML
32 lines
921 B
YAML
name: Question
|
|
description: Ask a question about uv
|
|
labels: ["question"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
**Please review [our guide on interacting with the issue tracker](https://github.com/astral-sh/uv/issues/9452) before opening a new issue.**
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Question
|
|
description: Describe your question in detail.
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Platform
|
|
description: What operating system and architecture are you using? (see `uname -orsm`)
|
|
placeholder: e.g., macOS 14 arm64, Windows 11 x86_64, Ubuntu 20.04 amd64
|
|
validations:
|
|
required: false
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Version
|
|
description: What version of uv are you using? (see `uv self version`)
|
|
placeholder: e.g., uv 0.5.20 (1c17662b3 2025-01-15)
|
|
validations:
|
|
required: false
|