diff --git a/pyproject.toml b/pyproject.toml index 05611d8..2a24429 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "peopledatalabs" -version = "6.4.9" +version = "6.4.10" 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.txt b/requirements.txt index b820b15..02f8c20 100644 --- a/requirements.txt +++ b/requirements.txt @@ -258,6 +258,6 @@ requests==2.32.4 ; python_version >= "3.8" and python_version < "4.0" \ typing-extensions==4.15.0 ; python_version >= "3.8" and python_version < "4.0" \ --hash=sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466 \ --hash=sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548 -urllib3==2.5.0 ; python_version >= "3.8" and python_version < "4.0" \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 ; python_version >= "3.8" and python_version < "4.0" \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 diff --git a/requirements_dev.txt b/requirements_dev.txt index 6408108..3ef9a99 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -468,6 +468,6 @@ typing-extensions==4.15.0 ; python_version >= "3.8" and python_version < "4.0" \ --hash=sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548 untokenize==0.1.1 ; python_version >= "3.8" and python_version < "4.0" \ --hash=sha256:3865dbbbb8efb4bb5eaa72f1be7f3e0be00ea8b7f125c69cbd1f5fda926f37a2 -urllib3==2.5.0 ; python_version >= "3.8" and python_version < "4.0" \ - --hash=sha256:3fc47733c7e419d4bc3f6b3dc2b4f890bb743906a30d56ba4a5bfa4bbff92760 \ - --hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc +urllib3==2.6.0 ; python_version >= "3.8" and python_version < "4.0" \ + --hash=sha256:c90f7a39f716c572c4e3e58509581ebd83f9b59cced005b7db7ad2d22b0db99f \ + --hash=sha256:cb9bcef5a4b345d5da5d145dc3e30834f58e8018828cbc724d30b4cb7d4d49f1 diff --git a/src/peopledatalabs/__init__.py b/src/peopledatalabs/__init__.py index 678b1a2..aa255d2 100644 --- a/src/peopledatalabs/__init__.py +++ b/src/peopledatalabs/__init__.py @@ -5,6 +5,6 @@ from .main import PDLPY -__version__ = "6.4.9" +__version__ = "6.4.10" __all__ = ["PDLPY"] diff --git a/src/peopledatalabs/settings.py b/src/peopledatalabs/settings.py index cd16396..883e6fd 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.9" + sdk_version: str = "6.4.10" settings = Settings() diff --git a/tests/client/test_client.py b/tests/client/test_client.py index 0e45f9b..6fe1876 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.9" + assert __version__ == "6.4.10" @pytest.mark.usefixtures("fake_api_key")