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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.4
rev: v0.12.1
hooks:
- id: ruff
files: spatialpandas/
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ ignore = [
"E731", # Do not assign a lambda expression, use a def
"E741", # Ambiguous variable name
"F405", # From star imports
"PLC0415", #`import` should be at the top-level of a file
"PLE0604", # Invalid object in `__all__`, must contain only strings
"PLE0605", # Invalid format for `__all__`
"PLR091", # Too many arguments/branches/statements
Expand Down
2 changes: 2 additions & 0 deletions spatialpandas/geometry/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ class GeometryArray(ExtensionArray):
_element_type = Geometry
_can_hold_na = True

__hash__: None # Copied from ExtensionArray

# Import / export methods
@classmethod
def from_geopandas(cls, ga):
Expand Down
Loading