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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ else:

```python
result = client.ip(
ip="72.212.42.169",
ip="72.212.42.228",
)
if result.ok:
print(result.text)
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "peopledatalabs"
version = "6.4.8"
version = "6.4.9"
description = "Official Python client for the People Data Labs API"
homepage = "https://www.peopledatalabs.com"
repository = "https://github.com/peopledatalabs/peopledatalabs-python"
Expand Down
6 changes: 3 additions & 3 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ docformatter==1.7.6 ; python_version >= "3.8" and python_version < "4.0" \
email-validator==2.3.0 ; python_version >= "3.8" and python_version < "4.0" \
--hash=sha256:80f13f623413e6b197ae73bb10bf4eb0908faf509ad8362c5edeb0be7fd450b4 \
--hash=sha256:9fc05c37f2f6cf439ff414f8fc46d917929974a82244c20eb10231ba60c54426
exceptiongroup==1.3.0 ; python_version >= "3.8" and python_version < "3.11" \
--hash=sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10 \
--hash=sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88
exceptiongroup==1.3.1 ; python_version >= "3.8" and python_version < "3.11" \
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
flake8==5.0.4 ; python_version >= "3.8" and python_version < "4.0" \
--hash=sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db \
--hash=sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248
Expand Down
2 changes: 1 addition & 1 deletion src/peopledatalabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from .main import PDLPY


__version__ = "6.4.8"
__version__ = "6.4.9"

__all__ = ["PDLPY"]
2 changes: 1 addition & 1 deletion src/peopledatalabs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Settings:
version: str = "v5"
version_re: str = r"^v[0-9]$"
sandbox_base_path: HttpUrl = "https://sandbox.api.peopledatalabs.com/"
sdk_version: str = "6.4.8"
sdk_version: str = "6.4.9"


settings = Settings()
2 changes: 1 addition & 1 deletion tests/client/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_version():
"""
Version check.
"""
assert __version__ == "6.4.8"
assert __version__ == "6.4.9"


@pytest.mark.usefixtures("fake_api_key")
Expand Down
4 changes: 2 additions & 2 deletions tests/client/test_ip.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_api_endpoint_ip(client):
Tests successful execution of IP API.
"""
completion = client.ip(
ip="72.212.42.169",
ip="72.212.42.228",
)
assert isinstance(completion, requests.Response)
assert completion.status_code == 200
Expand All @@ -43,7 +43,7 @@ def test_api_endpoint_ip_with_min_confidence(client):
Tests successful execution of IP API with min_confidence.
"""
completion = client.ip(
ip="72.212.42.169",
ip="72.212.42.228",
min_confidence="very high",
)
assert isinstance(completion, requests.Response)
Expand Down
Loading