Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
tags: true
fetch-tags: true

- name: Check git setup
run: |
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pandas/src/geoarrow/pandas/lib.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import re as _re
import pandas as _pd
import pyarrow as _pa
import pyarrow_hotfix as _ # noqa: F401
import numpy as _np
from geoarrow.types import TypeSpec, type_spec, Encoding
import geoarrow.pyarrow as _ga
Expand Down
2 changes: 1 addition & 1 deletion geoarrow-pyarrow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description = ""
authors = [{name = "Dewey Dunnington", email = "[email protected]"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.8"
dependencies = ["pyarrow", "pyarrow_hotfix", "geoarrow-types"]
dependencies = ["pyarrow >= 14.0.2", "geoarrow-types"]

[project.optional-dependencies]
test = ["pytest", "pandas", "numpy", "geopandas", "pyogrio", "pyproj", "geoarrow-c"]
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/_array.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import pyarrow as pa
import pyarrow_hotfix as _ # noqa: F401

from geoarrow.pyarrow._kernel import Kernel, _geoarrow_c
from geoarrow.pyarrow._type import (
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/_compute.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import pyarrow as pa
import pyarrow.compute as pc
import pyarrow_hotfix as _ # noqa: F401

from geoarrow.types import (
type_spec,
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/_kernel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import sys

import pyarrow as pa
import pyarrow_hotfix as _ # noqa: F401
from geoarrow.types import box as box_spec
from geoarrow.pyarrow._type import GeometryExtensionType

Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/_scalar.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import Optional

import pyarrow as pa
import pyarrow_hotfix as _ # noqa: F401
from geoarrow.pyarrow._kernel import Kernel
from geoarrow.types.type_pyarrow import GeometryExtensionType

Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/_type.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Iterable
import pyarrow as pa
import pyarrow_hotfix as _ # noqa: F401

from geoarrow import types
from geoarrow.types.type_pyarrow import (
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import pyarrow.dataset as _ds
import pyarrow.parquet as _pq
import pyarrow.types as _types
import pyarrow_hotfix as _ # noqa: F401
from geoarrow.c.lib import CoordType
from geoarrow.pyarrow._kernel import Kernel
from geoarrow.pyarrow._type import GeometryExtensionType, wkb, wkt
Expand Down
1 change: 0 additions & 1 deletion geoarrow-pyarrow/src/geoarrow/pyarrow/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import pyarrow as _pa
import pyarrow.parquet as _pq
import pyarrow.types as _types
import pyarrow_hotfix as _ # noqa: F401
from geoarrow.pyarrow import _type
from geoarrow.pyarrow import _compute

Expand Down
Loading