Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews committed Mar 5, 2025
1 parent 1854d27 commit 3b0f62e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.4.0: 2025-03-06
=================

- Python 3.9+ is now required (:PR:`321`)
- Add support for array-based bulk insert with NumPy (:PR:`340` by :user:`FreddieWitherden`)
- Upgrade binary wheels with libspatialindex-2.1.0 (:PR:`353`)
- Rename project and other build components to "rtree" (:PR:`350`)

1.3.0: 2024-07-10
=================

Expand Down
2 changes: 1 addition & 1 deletion rtree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

from __future__ import annotations

__version__ = "1.3.0"
__version__ = "1.4.0"

from .index import Index, Rtree # noqa
12 changes: 12 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
import shutil
from collections.abc import Iterator

import numpy
import py
import pytest

import rtree

data_files = ["boxes_15x15.data"]


Expand All @@ -17,3 +20,12 @@ def temporary_working_directory(tmpdir: py.path.local) -> Iterator[None]:
shutil.copy(filename, str(tmpdir))
with tmpdir.as_cwd():
yield


def pytest_report_header(config):
"""Header for pytest."""
vers = [
f"SIDX version: {rtree.core.rt.SIDX_Version().decode()}",
f"NumPy version: {numpy.__version__}",
]
return "\n".join(vers)

0 comments on commit 3b0f62e

Please sign in to comment.