bug_report.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. name: Bug Report | 反馈 Bug
  2. description: Create a bug report for MinerU | MinerU 的 Bug 反馈
  3. labels: bug
  4. # We omit `title: "..."` so that the field defaults to blank. If we set it to
  5. # empty string, Github seems to reject this .yml file.
  6. body:
  7. - type: textarea
  8. id: description
  9. attributes:
  10. label: Description of the bug | 错误描述
  11. description: |
  12. A clear and concise description of the bug. | 简单描述遇到的问题
  13. validations:
  14. required: true
  15. - type: textarea
  16. id: reproduce
  17. attributes:
  18. label: How to reproduce the bug | 如何复现
  19. # Should not word-wrap this description here.
  20. description: |
  21. * Explain the steps required to reproduce the bug. | 说明复现此错误所需的步骤。
  22. * Include required code snippets, example files, etc. | 包含必要的代码片段、示例文件等。
  23. * Describe what you expected to happen (if not obvious). | 描述你期望发生的情况。
  24. * If applicable, add screenshots to help explain the problem. | 添加截图以帮助解释问题。
  25. * Include any other information that could be relevant, for example information about the Python environment. | 包括任何其他可能相关的信息。
  26. For problems when building or installing MinerU: | 在构建或安装 MinerU 时遇到的问题:
  27. * Give the **exact** build/install commands that were run. | 提供**确切**的构建/安装命令。
  28. * Give the **complete** output from these commands. | 提供这些命令的**完整**输出。
  29. validations:
  30. required: true
  31. # - type: markdown
  32. # attributes:
  33. # value: |
  34. # # The information below is required.
  35. - type: dropdown
  36. id: os_name
  37. attributes:
  38. label: Operating system | 操作系统
  39. #multiple: true
  40. options:
  41. -
  42. - Windows
  43. - Linux
  44. - MacOS
  45. validations:
  46. required: true
  47. - type: dropdown
  48. id: python_version
  49. attributes:
  50. label: Python version | Python 版本
  51. #multiple: true
  52. # Need quotes around `3.10` otherwise it is treated as a number and shows as `3.1`.
  53. options:
  54. -
  55. - "3.12"
  56. - "3.11"
  57. - "3.10"
  58. - "3.9"
  59. validations:
  60. required: true
  61. - type: dropdown
  62. id: device_mode
  63. attributes:
  64. label: Device mode | 设备模式
  65. #multiple: true
  66. options:
  67. -
  68. - cpu
  69. - cuda
  70. - mps
  71. validations:
  72. required: true