Skip to content
Commits on Source (4)
Metadata-Version: 2.1
Name: Rtree
Version: 0.9.0
Version: 0.9.1
Summary: R-Tree spatial index for Python GIS
Home-page: https://github.com/Toblerity/rtree
Author: Sean Gillies
......
python-rtree (0.9.1+ds-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Tue, 26 Nov 2019 05:22:49 +0100
python-rtree (0.9.0+ds-1) unstable; urgency=medium
* New upstream release.
......
......@@ -2,4 +2,4 @@ from .index import Rtree
from .core import rt
__version__ = '0.9.0'
__version__ = '0.9.1'
......@@ -95,6 +95,9 @@ if os.name == 'nt':
elif os.name == 'posix':
if 'conda' in sys.version:
os.environ['PATH'] = "{};{}".format(os.environ['PATH'], os.path.join(sys.prefix, "lib"))
lib_name = find_library('spatialindex_c')
if not lib_name:
if 'linux' in sys.platform:
lib_name = 'libspatialindex_c.so'
elif 'darwin' in sys.platform:
......