A library that computes the ephemerides.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

bug_report.yml 2.2 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. name: Bug report
  2. description: Report a bug you have found, so it can be fixed
  3. labels:
  4. - bug
  5. assignees:
  6. - deuchnord
  7. body:
  8. - type: markdown
  9. attributes:
  10. value: |
  11. Thanks for taking time to fill out this bug report!
  12. - type: checkboxes
  13. id: terms
  14. attributes:
  15. label: I have searched for an opened issue and didn't find my bug
  16. description: |
  17. Before continuing, please verify that your bug is not already known, i.e.:
  18. - there is an issue that describe your bug;
  19. - the issue is not closed.
  20. If you have found a closed issue that describes the same bug as yours, please don't comment inside and open a new issue instead.
  21. Even though it may look the same, your bug might be totally different :smile:
  22. options:
  23. - label: I confirm I didn't find any issue regarding my bug
  24. required: true
  25. - type: dropdown
  26. id: lib-version
  27. validations:
  28. required: true
  29. attributes:
  30. label: Version of Kosmorrolib
  31. description: |
  32. What version of Kosmorrolib are you using?
  33. options:
  34. - "1.0"
  35. - "0.11"
  36. - main branch
  37. - features branch
  38. - type: dropdown
  39. id: python-version
  40. validations:
  41. required: true
  42. attributes:
  43. label: Version of Python
  44. description: |
  45. What version of Python are you using?
  46. If you don't know, invoke `python --version`.
  47. options:
  48. - "3.10"
  49. - "3.9"
  50. - "3.8"
  51. - "3.7"
  52. - type: dropdown
  53. id: operating-system
  54. validations:
  55. required: true
  56. attributes:
  57. label: Operating system
  58. description: What operating systems did you use?
  59. multiple: true
  60. options:
  61. - Linux
  62. - FreeBSD
  63. - macOS 12 (Monterey)
  64. - macOS 11 (Big Sur)
  65. - macOS 10.15 (Catalina)
  66. - Windows 11
  67. - Windows 10
  68. - type: textarea
  69. id: description
  70. validations:
  71. required: true
  72. attributes:
  73. label: Bug description
  74. description: |
  75. Describe the bug you have encountered:
  76. - what did you try to do?
  77. - what did you expect the program to do?
  78. - what happened instead?