Skip to content

Commit a2e6f1a

Browse files
authored
chore(geoarrow-pyarrow): Remove pyarrow_hotfix and set minimum version (#66)
1 parent 67e10c7 commit a2e6f1a

File tree

10 files changed

+2
-10
lines changed

10 files changed

+2
-10
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/checkout@v4
8989
with:
9090
fetch-depth: 0
91-
tags: true
91+
fetch-tags: true
9292

9393
- name: Check git setup
9494
run: |

geoarrow-pandas/src/geoarrow/pandas/lib.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import re as _re
22
import pandas as _pd
33
import pyarrow as _pa
4-
import pyarrow_hotfix as _ # noqa: F401
54
import numpy as _np
65
from geoarrow.types import TypeSpec, type_spec, Encoding
76
import geoarrow.pyarrow as _ga

geoarrow-pyarrow/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ description = ""
2323
authors = [{name = "Dewey Dunnington", email = "[email protected]"}]
2424
license = {text = "Apache-2.0"}
2525
requires-python = ">=3.8"
26-
dependencies = ["pyarrow", "pyarrow_hotfix", "geoarrow-types"]
26+
dependencies = ["pyarrow >= 14.0.2", "geoarrow-types"]
2727

2828
[project.optional-dependencies]
2929
test = ["pytest", "pandas", "numpy", "geopandas", "pyogrio", "pyproj", "geoarrow-c"]

geoarrow-pyarrow/src/geoarrow/pyarrow/_array.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import pyarrow as pa
2-
import pyarrow_hotfix as _ # noqa: F401
32

43
from geoarrow.pyarrow._kernel import Kernel, _geoarrow_c
54
from geoarrow.pyarrow._type import (

geoarrow-pyarrow/src/geoarrow/pyarrow/_compute.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import pyarrow as pa
22
import pyarrow.compute as pc
3-
import pyarrow_hotfix as _ # noqa: F401
43

54
from geoarrow.types import (
65
type_spec,

geoarrow-pyarrow/src/geoarrow/pyarrow/_kernel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import sys
22

33
import pyarrow as pa
4-
import pyarrow_hotfix as _ # noqa: F401
54
from geoarrow.types import box as box_spec
65
from geoarrow.pyarrow._type import GeometryExtensionType
76

geoarrow-pyarrow/src/geoarrow/pyarrow/_scalar.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from typing import Optional
22

33
import pyarrow as pa
4-
import pyarrow_hotfix as _ # noqa: F401
54
from geoarrow.pyarrow._kernel import Kernel
65
from geoarrow.types.type_pyarrow import GeometryExtensionType
76

geoarrow-pyarrow/src/geoarrow/pyarrow/_type.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import Iterable
22
import pyarrow as pa
3-
import pyarrow_hotfix as _ # noqa: F401
43

54
from geoarrow import types
65
from geoarrow.types.type_pyarrow import (

geoarrow-pyarrow/src/geoarrow/pyarrow/dataset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import pyarrow.dataset as _ds
1212
import pyarrow.parquet as _pq
1313
import pyarrow.types as _types
14-
import pyarrow_hotfix as _ # noqa: F401
1514
from geoarrow.c.lib import CoordType
1615
from geoarrow.pyarrow._kernel import Kernel
1716
from geoarrow.pyarrow._type import GeometryExtensionType, wkb, wkt

geoarrow-pyarrow/src/geoarrow/pyarrow/io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import pyarrow as _pa
1313
import pyarrow.parquet as _pq
1414
import pyarrow.types as _types
15-
import pyarrow_hotfix as _ # noqa: F401
1615
from geoarrow.pyarrow import _type
1716
from geoarrow.pyarrow import _compute
1817

0 commit comments

Comments
 (0)