From 5bd9a3d4a8ea395f883cd020e12853b75b458bb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 11 Jan 2026 17:01:59 +0000 Subject: [PATCH 1/2] Bump pathspec from 0.12.1 to 1.0.3 Bumps [pathspec](https://github.com/cpburnz/python-pathspec) from 0.12.1 to 1.0.3. - [Release notes](https://github.com/cpburnz/python-pathspec/releases) - [Changelog](https://github.com/cpburnz/python-pathspec/blob/master/CHANGES.rst) - [Commits](https://github.com/cpburnz/python-pathspec/compare/v0.12.1...v1.0.3) --- updated-dependencies: - dependency-name: pathspec dependency-version: 1.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements_dev.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index 59f40b1..d187104 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -262,9 +262,9 @@ mypy-extensions==1.1.0 ; python_version >= "3.8" and python_version < "4.0" \ packaging==25.0 ; python_version >= "3.8" and python_version < "4.0" \ --hash=sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484 \ --hash=sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f -pathspec==0.12.1 ; python_version >= "3.8" and python_version < "4.0" \ - --hash=sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08 \ - --hash=sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712 +pathspec==1.0.3 ; python_version >= "3.8" and python_version < "4.0" \ + --hash=sha256:bac5cf97ae2c2876e2d25ebb15078eb04d76e4b98921ee31c6f85ade8b59444d \ + --hash=sha256:e80767021c1cc524aa3fb14bedda9c34406591343cc42797b386ce7b9354fb6c platformdirs==4.4.0 ; python_version >= "3.8" and python_version < "4.0" \ --hash=sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85 \ --hash=sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf From a818201b0b485b52aec91e8608d2537db9d902f1 Mon Sep 17 00:00:00 2001 From: Varun Villait Date: Mon, 12 Jan 2026 02:07:12 -0700 Subject: [PATCH 2/2] update --- pyproject.toml | 2 +- src/peopledatalabs/__init__.py | 2 +- src/peopledatalabs/settings.py | 2 +- tests/client/test_client.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f537806..e117ee8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "peopledatalabs" -version = "6.4.12" +version = "6.4.13" 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/src/peopledatalabs/__init__.py b/src/peopledatalabs/__init__.py index 8bc9f5c..fac790a 100644 --- a/src/peopledatalabs/__init__.py +++ b/src/peopledatalabs/__init__.py @@ -5,6 +5,6 @@ from .main import PDLPY -__version__ = "6.4.12" +__version__ = "6.4.13" __all__ = ["PDLPY"] diff --git a/src/peopledatalabs/settings.py b/src/peopledatalabs/settings.py index 822fa87..662968f 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.12" + sdk_version: str = "6.4.13" settings = Settings() diff --git a/tests/client/test_client.py b/tests/client/test_client.py index 8cd1054..535ade5 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.12" + assert __version__ == "6.4.13" @pytest.mark.usefixtures("fake_api_key")