Skip to content

Commit b04ee1b

Browse files
Merge pull request #48 from HiDiHlabs/scm_versioning
Fix automatic versioning based on tags
2 parents 352ee28 + 4e018b1 commit b04ee1b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ovrlpy/_ssam2/_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _kde_nd(
4747
dim_bins = list()
4848
for i in range(coordinates.shape[1]):
4949
c_min = int(np.min(coordinates[:, i]))
50-
c_max = int(np.floor(np.max(coordinates[:, i])+1))
50+
c_max = int(np.floor(np.max(coordinates[:, i]) + 1))
5151
dim_bins.append(np.linspace(c_min, c_max, c_max - c_min + 1))
5252

5353
histogram, bins = np.histogramdd(

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ Issues = "https://github.com/HiDiHlabs/ovrl.py/issues"
5454
[tool.setuptools]
5555
packages = ["ovrlpy"]
5656

57+
[tool.setuptools_scm]
58+
5759
[tool.ruff]
5860
target-version = "py311"
5961

0 commit comments

Comments
 (0)