From a9ce7bef3df5563395892ec7ca0b841447a72118 Mon Sep 17 00:00:00 2001 From: Yatoom Date: Wed, 7 Apr 2021 02:29:24 +0200 Subject: [PATCH] Fix read the docs link. --- README.md | 2 +- docs/conf.py | 2 +- foronoi/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2e6b289..0cb1ad6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Foronoi is a Python implementation of the Fortune’s algorithm based on the des This algorithm is a sweep line algorithm that scans top down over the cell points and traces out the lines via breakpoints in between parabola’s (arcs). When lines converge, a circle event happens which inserts a new vertex. -[Documentation can be found here](https://voronoi.readthedocs.io/en/latest/i). +[Documentation can be found here](https://voronoi.readthedocs.io/en/latest/). ## Pip Installation ```bash diff --git a/docs/conf.py b/docs/conf.py index c9b06c5..3cc9fd2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Jeroen van Hoof' # The full version, including alpha/beta/rc tags -release = '1.0.2' +release = '1.0.3' # -- General configuration --------------------------------------------------- diff --git a/foronoi/__init__.py b/foronoi/__init__.py index c727138..f77ea19 100644 --- a/foronoi/__init__.py +++ b/foronoi/__init__.py @@ -9,4 +9,4 @@ from foronoi.observers.voronoi_observer import VoronoiObserver from foronoi.visualization.tree_visualizer import TreeVisualizer -__version__ = "1.0.2" +__version__ = "1.0.3" diff --git a/setup.py b/setup.py index e0fb054..6e14619 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ "foronoi.events", "foronoi.tests" ], - version="1.0.2", + version="1.0.3", description="Fortune's algorithm for fast Voronoi diagram construction with extras.", long_description=long_description, long_description_content_type='text/markdown',