Skip to content

Commit 15fc635

Browse files
committed
Switch to geoip2 5
1 parent 17212ff commit 15fc635

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

minfraud/models.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,26 @@
88

99
# pylint:disable=too-many-lines,too-many-instance-attributes,too-many-locals
1010
from collections.abc import Sequence
11-
from typing import Optional
11+
from typing import Any, Optional
1212

1313
import geoip2.models
1414
import geoip2.records
15-
from geoip2.mixins import SimpleEquality
1615

1716

18-
class _Serializable(SimpleEquality):
17+
class _Serializable:
18+
def __eq__(self, other: object) -> bool:
19+
return isinstance(other, self.__class__) and self.to_dict() == other.to_dict()
20+
21+
def __ne__(self, other) -> bool:
22+
return not self.__eq__(other)
23+
1924
def to_dict(self) -> dict:
2025
"""Returns a dict of the object suitable for serialization."""
2126
result = {}
2227
for key, value in self.__dict__.items():
2328
if hasattr(value, "to_dict") and callable(value.to_dict):
2429
if d := value.to_dict():
2530
result[key] = d
26-
elif hasattr(value, "raw"):
27-
# geoip2 uses "raw" for historical reasons
28-
if d := value.raw:
29-
result[key] = d
3031
elif isinstance(value, list):
3132
ls = []
3233
for e in value:
@@ -221,7 +222,7 @@ def __init__(
221222
if risk_reasons is not None:
222223
kwargs["risk_reasons"] = risk_reasons
223224

224-
super().__init__(kwargs, locales=list(locales or []))
225+
super().__init__(locales, **kwargs)
225226
self.location = GeoIP2Location(**(location or {}))
226227
self.risk = risk
227228
self.risk_reasons = [IPRiskReason(**x) for x in risk_reasons or []]

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
dependencies = [
99
"aiohttp>=3.6.2,<4.0.0",
1010
"email_validator>=2.0.0,<3.0.0",
11-
"geoip2>=4.8.0,<5.0.0",
11+
"geoip2>=5.0.1,<6.0.0",
1212
"requests>=2.24.0,<3.0.0",
1313
"voluptuous",
1414
]

0 commit comments

Comments
 (0)