Skip to content

Commit

Permalink
version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Luca van den Busch committed Jan 31, 2024
1 parent 4f3583a commit 7f33ea6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. image:: https://raw.githubusercontent.com/jlvdb/balltree/main/docs/source/_static/logo.png
:width: 800
:width: 750
:alt: balltree

|
Expand All @@ -22,7 +22,7 @@ the query routines are geared towards range queries, i.e. counting pairs with a
given (range of) separations. Fixed number nearest neighbour search is currently
not implemented.

|
.. toc
Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion balltree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4"
__version__ = "1.0"

from .angulartree import AngularTree
from .balltree import BallTree, default_leafsize as _df
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
content = f.read()
readme_text = "".join(content.split("|", 2)[2]) # drop header
with open("index.rst", "w") as f:
f.write(index_text.replace("%README%", readme_text).replace("|", toc))
f.write(index_text.replace("%README%", readme_text).replace(".. toc", toc))

# generate the BallTree documentation
with open("api/balltree.BallTree.rst", "w") as f:
Expand Down

0 comments on commit 7f33ea6

Please sign in to comment.