|
| 1 | +name: Bug report |
| 2 | +description: Report something that is broken or incorrect |
| 3 | +labels: bug |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) |
| 9 | + detailing how to provide the necessary information for us to reproduce your bug. In brief: |
| 10 | + * Please provide exact steps how to reproduce the bug in a clean Python environment. |
| 11 | + * In case it's not clear what's causing this bug, please provide the data or the data generation procedure. |
| 12 | + * Sometimes it is not possible to share the data, but usually it is possible to replicate problems on publicly |
| 13 | + available datasets or to share a subset of your data. |
| 14 | +
|
| 15 | + - type: textarea |
| 16 | + id: report |
| 17 | + attributes: |
| 18 | + label: Report |
| 19 | + description: A clear and concise description of what the bug is. |
| 20 | + validations: |
| 21 | + required: true |
| 22 | + |
| 23 | + - type: textarea |
| 24 | + id: versions |
| 25 | + attributes: |
| 26 | + label: Versions |
| 27 | + description: | |
| 28 | + Which version of packages. |
| 29 | +
|
| 30 | + Please install `session-info2`, run the following command in a notebook, |
| 31 | + click the “Copy as Markdown” button, then paste the results into the text box below. |
| 32 | +
|
| 33 | + ```python |
| 34 | + In[1]: import session_info2; session_info2.session_info(dependencies=True) |
| 35 | + ``` |
| 36 | +
|
| 37 | + Alternatively, run this in a console: |
| 38 | +
|
| 39 | + ```python |
| 40 | + >>> import session_info2; print(session_info2.session_info(dependencies=True)._repr_mimebundle_()["text/markdown"]) |
| 41 | + ``` |
| 42 | + render: python |
| 43 | + placeholder: | |
| 44 | + anndata 0.11.3 |
| 45 | + ---- ---- |
| 46 | + charset-normalizer 3.4.1 |
| 47 | + coverage 7.7.0 |
| 48 | + psutil 7.0.0 |
| 49 | + dask 2024.7.1 |
| 50 | + jaraco.context 5.3.0 |
| 51 | + numcodecs 0.15.1 |
| 52 | + jaraco.functools 4.0.1 |
| 53 | + Jinja2 3.1.6 |
| 54 | + sphinxcontrib-jsmath 1.0.1 |
| 55 | + sphinxcontrib-htmlhelp 2.1.0 |
| 56 | + toolz 1.0.0 |
| 57 | + session-info2 0.1.2 |
| 58 | + PyYAML 6.0.2 |
| 59 | + llvmlite 0.44.0 |
| 60 | + scipy 1.15.2 |
| 61 | + pandas 2.2.3 |
| 62 | + sphinxcontrib-devhelp 2.0.0 |
| 63 | + h5py 3.13.0 |
| 64 | + tblib 3.0.0 |
| 65 | + setuptools-scm 8.2.0 |
| 66 | + more-itertools 10.3.0 |
| 67 | + msgpack 1.1.0 |
| 68 | + sparse 0.15.5 |
| 69 | + wrapt 1.17.2 |
| 70 | + jaraco.collections 5.1.0 |
| 71 | + numba 0.61.0 |
| 72 | + pyarrow 19.0.1 |
| 73 | + pytz 2025.1 |
| 74 | + MarkupSafe 3.0.2 |
| 75 | + crc32c 2.7.1 |
| 76 | + sphinxcontrib-qthelp 2.0.0 |
| 77 | + sphinxcontrib-serializinghtml 2.0.0 |
| 78 | + zarr 2.18.4 |
| 79 | + asciitree 0.3.3 |
| 80 | + six 1.17.0 |
| 81 | + sphinxcontrib-applehelp 2.0.0 |
| 82 | + numpy 2.1.3 |
| 83 | + cloudpickle 3.1.1 |
| 84 | + sphinxcontrib-bibtex 2.6.3 |
| 85 | + natsort 8.4.0 |
| 86 | + jaraco.text 3.12.1 |
| 87 | + setuptools 76.1.0 |
| 88 | + Deprecated 1.2.18 |
| 89 | + packaging 24.2 |
| 90 | + python-dateutil 2.9.0.post0 |
| 91 | + ---- ---- |
| 92 | + Python 3.13.2 | packaged by conda-forge | (main, Feb 17 2025, 14:10:22) [GCC 13.3.0] |
| 93 | + OS Linux-6.11.0-109019-tuxedo-x86_64-with-glibc2.39 |
| 94 | + Updated 2025-03-18 15:47 |
0 commit comments