Skip to content

Commit 18b4e0f

Browse files
Bump pydantic-core from 2.41.4 to 2.41.5 (#246)
* Bump pydantic-core from 2.41.4 to 2.41.5 Bumps [pydantic-core](https://github.com/pydantic/pydantic-core) from 2.41.4 to 2.41.5. - [Release notes](https://github.com/pydantic/pydantic-core/releases) - [Commits](pydantic/pydantic-core@v2.41.4...v2.41.5) --- updated-dependencies: - dependency-name: pydantic-core dependency-version: 2.41.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * update tests --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Varun Villait <[email protected]>
1 parent 8de034b commit 18b4e0f

File tree

7 files changed

+249
-241
lines changed

7 files changed

+249
-241
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "peopledatalabs"
3-
version = "6.4.6"
3+
version = "6.4.7"
44
description = "Official Python client for the People Data Labs API"
55
homepage = "https://www.peopledatalabs.com"
66
repository = "https://github.com/peopledatalabs/peopledatalabs-python"

requirements.txt

Lines changed: 122 additions & 118 deletions
Large diffs are not rendered by default.

requirements_dev.txt

Lines changed: 122 additions & 118 deletions
Large diffs are not rendered by default.

src/peopledatalabs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
from .main import PDLPY
66

77

8-
__version__ = "6.4.6"
8+
__version__ = "6.4.7"
99

1010
__all__ = ["PDLPY"]

src/peopledatalabs/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.6"
22+
sdk_version: str = "6.4.7"
2323

2424

2525
settings = Settings()

tests/client/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_version():
1919
"""
2020
Version check.
2121
"""
22-
assert __version__ == "6.4.6"
22+
assert __version__ == "6.4.7"
2323

2424

2525
@pytest.mark.usefixtures("fake_api_key")

tests/person/endpoints/test_changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_api_endpoint_changelog(client):
3131
Tests successful execution of changelog API.
3232
"""
3333
changelog = client.person.changelog(
34-
current_version="31.0", origin_version="30.2", type="updated"
34+
current_version="32.0", origin_version="31.2", type="updated"
3535
)
3636
assert isinstance(changelog, requests.Response)
3737
assert changelog.status_code == 200

0 commit comments

Comments
 (0)