Skip to content

Commit

Permalink
Fix read the docs link.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatoom committed Apr 7, 2021
1 parent b466145 commit a9ce7be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion foronoi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a9ce7be

Please sign in to comment.