Skip to content

Commit

Permalink
fix: incomplete build
Browse files Browse the repository at this point in the history
  • Loading branch information
clementpoiret committed Nov 17, 2024
1 parent 624133b commit bdd4f19
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ Changelogs
HSF
---

**Version 1.2.3**

* Switched to Hatchling build backend

**Version 1.2.2**

* Updated ROILoc to v0.4.1 (latest ANTs version),
Expand Down
5 changes: 4 additions & 1 deletion docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ Current maintainers:

## HSF

### Version 1.2.3 (2024-11-17)

### Version 1.2.1 (2024-10-29)
* Switched to Hatchling build backend

### Version 1.2.2 (2024-10-29)

* Updated ROILoc to v0.4.1 (latest ANTs version),
* Updated dependencies,
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<br>
<font size="+2"><b>Hippocampal</b> <i>Segmentation</i> Factory</font>
<br>
<b>Current HSF version:</b> 1.2.2<br>
<b>Current HSF version:</b> 1.2.3<br>
<b>Built-in Models version:</b> 4.0.0<br>
<b>Models in the Hub:</b> 4
</p>
Expand Down
2 changes: 1 addition & 1 deletion hsf/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.2"
__version__ = "1.2.3"
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hsf"
version = "1.2.2"
version = "1.2.3"
description = "A simple yet exhaustive segmentation tool of the Hippocampal Subfields in T1w and T2w MRIs."
license = {text = "MIT License"}
readme = {file = "README.rst", content-type = "text/x-rst"}
Expand Down Expand Up @@ -45,3 +45,7 @@ filterwarnings = ["ignore::DeprecationWarning"]

[tool.coverage.report]
omit = ["hsf/welcome.py"]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
2 changes: 1 addition & 1 deletion tests/test_hsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


def test_version():
assert __version__ == "1.2.2"
assert __version__ == "1.2.3"


# SETUP FIXTURES
Expand Down

0 comments on commit bdd4f19

Please sign in to comment.