Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ avoid adding features or APIs which do not map onto the
[H3 core API](https://uber.github.io/h3/#/documentation/api-reference/).

## Unreleased
- Fix wheels for Python 3.14.6 free-threading

## [4.5.0] - 2026-05-29

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ classifiers = [
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: Free Threading',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/cells.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
cimport h3lib
from .h3lib cimport bool, int64_t, H3int, H3ErrorCodes

Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/edges.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
cimport h3lib
from .h3lib cimport bool, H3int

Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/error_system.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
"""
Exceptions from the h3-py library have three possible sources:

Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/latlng.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
from libc.stdint cimport uint64_t

cimport h3lib
Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/memory.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
from cython.view cimport array
from .h3lib cimport H3int

Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/to_multipoly.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
cimport h3lib
from h3lib cimport H3int
from .util cimport check_cell, coord2deg
Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/util.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
from .h3lib cimport (
H3int,
H3str,
Expand Down
1 change: 1 addition & 0 deletions src/h3/_cy/vertex.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: freethreading_compatible=True
cimport h3lib
from h3lib cimport bool, H3int

Expand Down