Skip to content

Commit bdd4f19

Browse files
author
clementpoiret
committed
fix: incomplete build
1 parent 624133b commit bdd4f19

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,10 @@ Changelogs
249249
HSF
250250
---
251251

252+
**Version 1.2.3**
253+
254+
* Switched to Hatchling build backend
255+
252256
**Version 1.2.2**
253257

254258
* Updated ROILoc to v0.4.1 (latest ANTs version),

docs/about/release-notes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ Current maintainers:
1616

1717
## HSF
1818

19+
### Version 1.2.3 (2024-11-17)
1920

20-
### Version 1.2.1 (2024-10-29)
21+
* Switched to Hatchling build backend
22+
23+
### Version 1.2.2 (2024-10-29)
2124

2225
* Updated ROILoc to v0.4.1 (latest ANTs version),
2326
* Updated dependencies,

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
<font size="+2"><b>Hippocampal</b> <i>Segmentation</i> Factory</font>
77
<br>
8-
<b>Current HSF version:</b> 1.2.2<br>
8+
<b>Current HSF version:</b> 1.2.3<br>
99
<b>Built-in Models version:</b> 4.0.0<br>
1010
<b>Models in the Hub:</b> 4
1111
</p>

hsf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.2"
1+
__version__ = "1.2.3"

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hsf"
3-
version = "1.2.2"
3+
version = "1.2.3"
44
description = "A simple yet exhaustive segmentation tool of the Hippocampal Subfields in T1w and T2w MRIs."
55
license = {text = "MIT License"}
66
readme = {file = "README.rst", content-type = "text/x-rst"}
@@ -45,3 +45,7 @@ filterwarnings = ["ignore::DeprecationWarning"]
4545

4646
[tool.coverage.report]
4747
omit = ["hsf/welcome.py"]
48+
49+
[build-system]
50+
requires = ["hatchling"]
51+
build-backend = "hatchling.build"

tests/test_hsf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
def test_version():
20-
assert __version__ == "1.2.2"
20+
assert __version__ == "1.2.3"
2121

2222

2323
# SETUP FIXTURES

0 commit comments

Comments
 (0)