Skip to content

Commit 0b47482

Browse files
Bump pydantic-core from 2.37.2 to 2.39.0 (#234)
* Bump pydantic-core from 2.37.2 to 2.39.0 Bumps [pydantic-core](https://github.com/pydantic/pydantic-core) from 2.37.2 to 2.39.0. - [Release notes](https://github.com/pydantic/pydantic-core/releases) - [Commits](pydantic/pydantic-core@v2.37.2...v2.39.0) --- updated-dependencies: - dependency-name: pydantic-core dependency-version: 2.39.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Varun Villait <vvillait88@yahoo.com>
1 parent cd5e1f4 commit 0b47482

File tree

7 files changed

+301
-316
lines changed

7 files changed

+301
-316
lines changed

poetry.lock

Lines changed: 83 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.2"
3+
version = "6.4.3"
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: 107 additions & 108 deletions
Large diffs are not rendered by default.

requirements_dev.txt

Lines changed: 107 additions & 108 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.2"
8+
__version__ = "6.4.3"
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.2"
22+
sdk_version: str = "6.4.3"
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.2"
22+
assert __version__ == "6.4.3"
2323

2424

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

0 commit comments

Comments
 (0)