Skip to content

Commit

Permalink
Use session-info2
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep authored Dec 19, 2024
1 parent 9f86910 commit b8c4648
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,18 @@ body:
description: |
Which version of anndata and other related software you used.
Please install `session-info`, run the following command, then paste the results into the text box below.
Please install `session-info2`, run the following command in a notebook,
click the “Copy as Markdown” button,
then paste the results into the text box below.
```python
>>> import anndata, session_info; session_info.show(html=False, dependencies=True)
In[1]: import anndata, session_info2; session_info2.session_info(dependencies=True)
```
Alternatively, run this in a console:
```python
import session_info2; print(session_info2.session_info(dependencies=True)._repr_mimebundle_()["text/markdown"])
```
render: python
validations:
Expand Down

0 comments on commit b8c4648

Please sign in to comment.