From 7d0727ba3876eefab797a373f66b6b7e3237b7e1 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Tue, 2 Jun 2020 13:13:34 +0100 Subject: [PATCH 1/2] Remove pinned doc requirements and add 1.3.1 release notes --- docs/changelog.rst | 4 +++- docs/requirements.txt | 6 ------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f9a209d1..26e091af 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -84,11 +84,13 @@ Compatibility notes :func:`~clifford.tools.g3c.iterative_closest_points_circle_line`. * ``furthest_points_on_circles`` has been renamed to :func:`~clifford.tools.g3c.iterative_furthest_points_on_circles`. - * This will be the last release to support :mod:`numba` versions below 0.49.0. * While this release is compatible with :mod:`numba` version 0.49.0, it is recommended to use 0.48.0 which does not emit as many warnings. See the :doc:`installation` instructions for how to follow this guidance. +Patch releases +-------------- +* 1.3.1: Added compatibility with :mod:`numba` version 0.50.0. Changes in 1.2.x ++++++++++++++++ diff --git a/docs/requirements.txt b/docs/requirements.txt index b763da67..e95098cd 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -7,10 +7,4 @@ ipywidgets sphinx>=2.4 sphinx_rtd_theme -# while we support 0.49, it emits tonnes of warnings so we pin this back -numba ~= 0.48.0 - -# needed due to pypa/pip#988, sparse 0.10.0 requires numba 0.49.0 -sparse ~= 0.9.0 - -r ../requirements.txt From 7cfabeb60374cb1784a323715747bc5ac5bfa60e Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Tue, 2 Jun 2020 13:13:54 +0100 Subject: [PATCH 2/2] Release 1.3.1 --- clifford/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clifford/_version.py b/clifford/_version.py index e88ee234..697294e5 100644 --- a/clifford/_version.py +++ b/clifford/_version.py @@ -5,4 +5,4 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module -__version__ = '1.3.0' +__version__ = '1.3.1'