Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
194 changes: 114 additions & 80 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "peopledatalabs"
version = "6.4.5"
version = "6.4.6"
description = "Official Python client for the People Data Labs API"
homepage = "https://www.peopledatalabs.com"
repository = "https://github.com/peopledatalabs/peopledatalabs-python"
Expand Down
194 changes: 114 additions & 80 deletions requirements.txt

Large diffs are not rendered by default.

194 changes: 114 additions & 80 deletions requirements_dev.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/peopledatalabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from .main import PDLPY


__version__ = "6.4.5"
__version__ = "6.4.6"

__all__ = ["PDLPY"]
2 changes: 1 addition & 1 deletion src/peopledatalabs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
sdk_version: str = "6.4.6"


settings = Settings()
2 changes: 1 addition & 1 deletion tests/client/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_version():
"""
Version check.
"""
assert __version__ == "6.4.5"
assert __version__ == "6.4.6"


@pytest.mark.usefixtures("fake_api_key")
Expand Down