We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 352ee28 + 4e018b1 commit b04ee1bCopy full SHA for b04ee1b
ovrlpy/_ssam2/_utils.py
@@ -47,7 +47,7 @@ def _kde_nd(
47
dim_bins = list()
48
for i in range(coordinates.shape[1]):
49
c_min = int(np.min(coordinates[:, i]))
50
- c_max = int(np.floor(np.max(coordinates[:, i])+1))
+ c_max = int(np.floor(np.max(coordinates[:, i]) + 1))
51
dim_bins.append(np.linspace(c_min, c_max, c_max - c_min + 1))
52
53
histogram, bins = np.histogramdd(
pyproject.toml
@@ -54,6 +54,8 @@ Issues = "https://github.com/HiDiHlabs/ovrl.py/issues"
54
[tool.setuptools]
55
packages = ["ovrlpy"]
56
57
+[tool.setuptools_scm]
58
+
59
[tool.ruff]
60
target-version = "py311"
61
0 commit comments