From d1c2adfadbaa26e5598c90a2c726b4e4a4bf776b Mon Sep 17 00:00:00 2001 From: Mariya Lysenkova Wiklander Date: Sat, 2 Nov 2024 10:22:10 +0100 Subject: [PATCH] bump version v1.0.2 -> v1.0.3 --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0162c4b..eb9c6b4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

Conformist

-Conformist v1.0.2 is an implementation of conformal prediction, specifically conformal risk control. It was written using Python 3.8. +Conformist v1.0.3 is an implementation of conformal prediction, specifically conformal risk control. It was written using Python 3.8. *BaseCoP* contains utility functions common to all conformal predictors, such as splitting data into calibration and validation sets, and setting up runs. It is extended by *FNRCoP* that implements conformal risk control. diff --git a/pyproject.toml b/pyproject.toml index 322ee40..0e0c483 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "conformist" -version = "v1.0.2" +version = "v1.0.3" description = "Conformal prediction for machine learning classifiers" readme = "README.md" authors = [{ name = "Mariya Lysenkova Wiklander", email = "mariya.lysenkova@medsci.uu.se" }] @@ -33,7 +33,7 @@ dev = ["black", "bumpver", "isort", "pip-tools", "pytest"] Homepage = "https://github.com/Molmed/conformist" [tool.bumpver] -current_version = "v1.0.2" +current_version = "v1.0.3" version_pattern = "vMAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" tag_message = "{new_version}"