From 0290059393ba080aeac64a9bea97212d0dfe6c64 Mon Sep 17 00:00:00 2001 From: Junya Morioka Date: Wed, 28 Jan 2026 18:25:01 +0900 Subject: [PATCH] feat: add wheel build request issue template Add GitHub Issue Forms template for requesting pre-built wheels with fields for Flash Attention, Python, PyTorch, CUDA versions and platform selection. Enable blank issues via config.yml. --- .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/wheel_request.yml | 49 ++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/wheel_request.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0086358 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/wheel_request.yml b/.github/ISSUE_TEMPLATE/wheel_request.yml new file mode 100644 index 0000000..eea1662 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/wheel_request.yml @@ -0,0 +1,49 @@ +name: Wheel Build Request +description: Request a pre-built wheel for a specific version combination +labels: ["wheel-request"] +body: + - type: input + id: flash-attention-version + attributes: + label: Flash Attention Version + placeholder: "2.8.3" + validations: + required: true + - type: input + id: python-version + attributes: + label: Python Version + placeholder: "3.12" + validations: + required: true + - type: input + id: pytorch-version + attributes: + label: PyTorch Version + placeholder: "2.10.0" + validations: + required: true + - type: input + id: cuda-version + attributes: + label: CUDA Version + placeholder: "12.8" + validations: + required: true + - type: dropdown + id: platform + attributes: + label: Platform + options: + - Linux x86_64 + - Linux ARM64 + - Windows + validations: + required: true + - type: textarea + id: additional-info + attributes: + label: Additional Information + description: Any additional context or details about your request. + validations: + required: false