File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed
Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ else:
417417
418418` ` ` python
419419result = client.ip(
420- ip=" 72.212.42.169 " ,
420+ ip=" 72.212.42.228 " ,
421421)
422422if result.ok:
423423 print(result.text)
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " peopledatalabs"
3- version = " 6.4.8 "
3+ version = " 6.4.9 "
44description = " Official Python client for the People Data Labs API"
55homepage = " https://www.peopledatalabs.com"
66repository = " https://github.com/peopledatalabs/peopledatalabs-python"
Original file line number Diff line number Diff line change @@ -238,9 +238,9 @@ docformatter==1.7.6 ; python_version >= "3.8" and python_version < "4.0" \
238238email-validator==2.3.0 ; python_version >= "3.8" and python_version < "4.0" \
239239 --hash=sha256:80f13f623413e6b197ae73bb10bf4eb0908faf509ad8362c5edeb0be7fd450b4 \
240240 --hash=sha256:9fc05c37f2f6cf439ff414f8fc46d917929974a82244c20eb10231ba60c54426
241- exceptiongroup==1.3.0 ; python_version >= "3.8" and python_version < "3.11" \
242- --hash=sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10 \
243- --hash=sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88
241+ exceptiongroup==1.3.1 ; python_version >= "3.8" and python_version < "3.11" \
242+ --hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
243+ --hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
244244flake8==5.0.4 ; python_version >= "3.8" and python_version < "4.0" \
245245 --hash=sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db \
246246 --hash=sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248
Original file line number Diff line number Diff line change 55from .main import PDLPY
66
77
8- __version__ = "6.4.8 "
8+ __version__ = "6.4.9 "
99
1010__all__ = ["PDLPY" ]
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class Settings:
1919 version : str = "v5"
2020 version_re : str = r"^v[0-9]$"
2121 sandbox_base_path : HttpUrl = "https://sandbox.api.peopledatalabs.com/"
22- sdk_version : str = "6.4.8 "
22+ sdk_version : str = "6.4.9 "
2323
2424
2525settings = Settings ()
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def test_version():
1919 """
2020 Version check.
2121 """
22- assert __version__ == "6.4.8 "
22+ assert __version__ == "6.4.9 "
2323
2424
2525@pytest .mark .usefixtures ("fake_api_key" )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def test_api_endpoint_ip(client):
3131 Tests successful execution of IP API.
3232 """
3333 completion = client .ip (
34- ip = "72.212.42.169 " ,
34+ ip = "72.212.42.228 " ,
3535 )
3636 assert isinstance (completion , requests .Response )
3737 assert completion .status_code == 200
@@ -43,7 +43,7 @@ def test_api_endpoint_ip_with_min_confidence(client):
4343 Tests successful execution of IP API with min_confidence.
4444 """
4545 completion = client .ip (
46- ip = "72.212.42.169 " ,
46+ ip = "72.212.42.228 " ,
4747 min_confidence = "very high" ,
4848 )
4949 assert isinstance (completion , requests .Response )
You can’t perform that action at this time.
0 commit comments