From be67cd668f20d355e41e9318b66ea6695cceea06 Mon Sep 17 00:00:00 2001 From: Matthieu Viry Date: Mon, 3 Jul 2023 12:22:26 +0200 Subject: [PATCH] Prepare for 0.3.3 release --- CHANGES.rst | 5 +++++ jenkspy/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1ce1699..f8b9f6e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +0.3.3 (2023-07-03) +------------------ + +- Fix error when JenksNaturalBreaks is instanced with n_classes=1 and raise error if n_classes is not a positive integer (fix #28). + 0.3.2 (2022-11-10) ------------------ diff --git a/jenkspy/__init__.py b/jenkspy/__init__.py index b0c7ca4..1b396ee 100644 --- a/jenkspy/__init__.py +++ b/jenkspy/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "0.3.2" +__version__ = "0.3.3" from .core import jenks_breaks from .core import _jenks_matrices