Skip to content

Commit 3952595

Browse files
committed
update version
1 parent 2ee664e commit 3952595

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

poetry.lock

Lines changed: 3 additions & 3 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.7"
3+
version = "6.4.8"
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"

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.7"
8+
__version__ = "6.4.8"
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.7"
22+
sdk_version: str = "6.4.8"
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.7"
22+
assert __version__ == "6.4.8"
2323

2424

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

0 commit comments

Comments
 (0)