summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug_report.md
blob: 7f8acda5cb04f44e0d4c80d088f50d65cddff5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: Bug report
about: Create a report to help us improve POT

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1 ...
2. 

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
 - OS: [e.g. MacOSX, Windows, Ubuntu]
 - Python version [2.7,3.6]
- How was POT installed [source, pip, conda]

Output of the following code snippet:
```python
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import numpy; print("NumPy", numpy.__version__)
import scipy; print("SciPy", scipy.__version__)
import ot; print("POT", ot.__version__)
```

**Additional context**
Add any other context about the problem here.