diff --git a/README.md b/README.md index a397d76..434c9c7 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/poetry.lock b/poetry.lock index 51f86f7..a9ce086 100644 --- a/poetry.lock +++ b/poetry.lock @@ -401,13 +401,13 @@ idna = ">=2.0.0" [[package]] name = "exceptiongroup" -version = "1.3.0" +version = "1.3.1" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10"}, - {file = "exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88"}, + {file = "exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598"}, + {file = "exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index bd9ebec..05611d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/requirements_dev.txt b/requirements_dev.txt index 2a6d7c9..6408108 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -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 diff --git a/src/peopledatalabs/__init__.py b/src/peopledatalabs/__init__.py index 2940c65..678b1a2 100644 --- a/src/peopledatalabs/__init__.py +++ b/src/peopledatalabs/__init__.py @@ -5,6 +5,6 @@ from .main import PDLPY -__version__ = "6.4.8" +__version__ = "6.4.9" __all__ = ["PDLPY"] diff --git a/src/peopledatalabs/settings.py b/src/peopledatalabs/settings.py index af89109..cd16396 100644 --- a/src/peopledatalabs/settings.py +++ b/src/peopledatalabs/settings.py @@ -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() diff --git a/tests/client/test_client.py b/tests/client/test_client.py index df98de4..0e45f9b 100644 --- a/tests/client/test_client.py +++ b/tests/client/test_client.py @@ -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") diff --git a/tests/client/test_ip.py b/tests/client/test_ip.py index 05f08ac..2cc295d 100644 --- a/tests/client/test_ip.py +++ b/tests/client/test_ip.py @@ -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 @@ -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)