Skip to content

Commit

Permalink
update CHANGES and README; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed Mar 4, 2022
1 parent 70d686f commit 5bf4723
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes

## 0.4.0

- better exception message for *"ridge line must intersect ..."* RuntimeError
- added Python 3.10 support
- update dependencies
- fixed warnings for updated dependencies

## 0.3.0

**This is a major update that changes the default behavior and accepted arguments of `voronoi_regions_from_coords()`.**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![PyPI version](https://badge.fury.io/py/geovoronoi.svg)](https://badge.fury.io/py/geovoronoi) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4531339.svg)](https://doi.org/10.5281/zenodo.4531339)

Markus Konrad <markus.konrad@wzb.eu>, February 2021
Markus Konrad <markus.konrad@wzb.eu>, March 2022

## Overview

Expand Down Expand Up @@ -89,7 +89,7 @@ See the full example source code in [examples/random_points_across_italy.py](exa

## Dependencies

*geovoronoi* requires **Python 3.6 or newer**. The following packages need to be installed (if not, they will be automatically installed if you use a Python package manager like *pip*):
*geovoronoi* requires **Python 3.6 or newer** (the package is tested for up to Python 3.10). The following packages need to be installed (if not, they will be automatically installed if you use a Python package manager like *pip*):

* NumPy
* SciPy
Expand Down
2 changes: 1 addition & 1 deletion geovoronoi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@


__title__ = 'geovoronoi'
__version__ = '0.3.0'
__version__ = '0.4.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
GITHUB_URL = 'https://github.com/WZBSocialScienceCenter/geovoronoi'

__title__ = 'geovoronoi'
__version__ = '0.3.1.dev'
__version__ = '0.4.0'
__author__ = 'Markus Konrad'
__license__ = 'Apache License 2.0'

Expand Down

0 comments on commit 5bf4723

Please sign in to comment.