Skip to content

Commit

Permalink
Increment version number to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Aug 12, 2022
1 parent 85d9d2a commit fe064a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changes
=======

0.2.1 (2022-08-xx)
0.2.1 (2022-08-12)
------------------

- Add a method to the `JenksNaturalBreaks` class that calculates the Goodness of Fit Variance thanks to Maurício Gomes / @mgomesq (#17).
Expand Down
19 changes: 7 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Fast Jenks breaks for Python

Compute "natural breaks" (*Fisher-Jenks algorithm*) on list / tuple / array / numpy.ndarray of integers/floats.

Intented compatibility: CPython 3.4+
Intended compatibility: CPython 3.6+

Wheels are provided via PyPI for windows users - Also available on conda-forge channel for Anaconda users
Wheels are provided via PyPI for Windows / MacOS / Linux users - Also available on conda-forge channel for Anaconda users.

|Version| |Anaconda-Server Badge| |Build Status travis| |Build status appveyor| |PyPI download month|
|Version| |Anaconda-Server Badge| |Build Status GH| |PyPI download month|

Usage :
-------
Expand All @@ -16,8 +16,6 @@ This package consists of a single function (named `jenks_breaks`) which takes as
It returns a list of values that correspond to the limits of the classes (starting with the minimum value of the series - the lower bound of the first class - and ending with its maximum value - the upper bound of the last class).




.. code:: python
>>> import jenkspy
Expand Down Expand Up @@ -130,16 +128,13 @@ Motivation :

- Making a painless installing C extension so it could be used more easily
as a dependency in an other package (and so learning how to build wheels
using *appveyor*).
- Getting the break values! (and fast!). No fancy functionnality provided,
using *appveyor* / *travis* at first - now it uses *GitHub Actions*).
- Getting the break values! (and fast!). No fancy functionality provided,
but contributions/forks/etc are welcome.
- Other python implementations are currently existing but not as fast nor available on PyPi.

.. |Build Status travis| image:: https://travis-ci.org/mthh/jenkspy.svg?branch=master
:target: https://travis-ci.org/mthh/jenkspy

.. |Build status appveyor| image:: https://ci.appveyor.com/api/projects/status/9ffk6juf2499xqk0/branch/master?svg=true
:target: https://ci.appveyor.com/project/mthh/jenkspy/branch/master
.. |Build status GH| image:: https://github.com/mthh/jenkspy/actions/workflows/wheel.yml/badge.svg
:target: https://github.com/mthh/jenkspy/actions/workflows/wheel.yml

.. |Version| image:: https://img.shields.io/pypi/v/jenkspy.svg
:target: https://pypi.python.org/pypi/jenkspy
Expand Down
2 changes: 1 addition & 1 deletion jenkspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = "0.2.0"
__version__ = "0.2.1"

from .core import jenks_breaks
from .core import JenksNaturalBreaks
Expand Down

0 comments on commit fe064a1

Please sign in to comment.