Skip to content

Commit 29f70f8

Browse files
Update to version 0.1
1 parent d1268f4 commit 29f70f8

File tree

4 files changed

+34
-14
lines changed

4 files changed

+34
-14
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## [0.1] - 2025-10-17
4+
### Added
5+
- `KhalibClassifier` class
6+
- `calibration_error` function
7+
- `build_reliability_diagram` function
8+
9+
[Unreleased]: https://github.com/yourusername/yourproject/compare/0.1...HEAD
10+
[1.0.0]: https://github.com/yourusername/yourproject/releases/tag/0.1

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,18 @@ See the [documentation][khalib-docs] for more information.
2424

2525
- Make sure you have installed [Khiops 11 Beta][khiops11-setup]
2626
- Execute
27+
2728
```bash
28-
pip install https://github.com/KhiopsLab/khalib/archive/refs/heads/main.zip
29+
pip install https://github.com/KhiopsLab/khalib/archive/refs/tags/0.1.zip
2930
```
31+
3032
<!-- end-install -->
3133

3234

35+
## Documentation
36+
37+
See https://khiopslab.github.io/khalib/
38+
3339

3440
[khiops-org]: https://khiops.org
3541
[khiops11-setup]: https://khiops.org/11.0.0-b.0/setup/

docs/conf.py

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,15 @@
1717
html_theme = "furo"
1818
html_static_path = ["_static"]
1919
html_title = f"<h6><center>{project} {release}</center></h6>"
20-
21-
autosummary_generate = True
22-
autosummary_ignore_module_all = False
23-
2420
default_role = "obj"
2521

26-
# Enable this to debug notebooks
27-
# nb_execution_allow_errors=True
28-
nb_execution_show_tb: True
29-
22+
# Extensions configs
3023

31-
## Numpydoc extension config
32-
numpydoc_show_class_members = False
24+
## autosummary
25+
autosummary_generate = True
26+
autosummary_ignore_module_all = False
3327

34-
## Autodoc extension config
28+
## autodoc
3529
autodoc_default_options = {
3630
"members": True,
3731
"inherited-members": False,
@@ -40,7 +34,17 @@
4034
"special-members": False,
4135
}
4236

43-
## Intersphinx extension config
37+
38+
## myst_nb
39+
nb_execution_allow_errors = False # Enable this to debug notebooks
40+
nb_execution_show_tb: True
41+
42+
43+
## numpydoc
44+
numpydoc_show_class_members = False
45+
46+
47+
## intersphinx
4448
intersphinx_mapping = {
4549
"python": ("https://docs.python.org/3", None),
4650
"pandas": ("https://pandas.pydata.org/pandas-docs/dev", None),

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "khalib"
7-
version = "0.1b0"
7+
version = "0.1"
88
description = "Classifier Calibration with Khiops"
99
authors = [{ name = "Felipe Olmos", email = "[email protected]" }]
1010
requires-python = ">=3.11"

0 commit comments

Comments
 (0)