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
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.6"
version = "6.4.7"
description = "Official Python client for the People Data Labs API"
homepage = "https://www.peopledatalabs.com"
repository = "https://github.com/peopledatalabs/peopledatalabs-python"
Expand Down
240 changes: 122 additions & 118 deletions requirements.txt

Large diffs are not rendered by default.

240 changes: 122 additions & 118 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.6"
__version__ = "6.4.7"

__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.6"
sdk_version: str = "6.4.7"


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.6"
assert __version__ == "6.4.7"


@pytest.mark.usefixtures("fake_api_key")
Expand Down
2 changes: 1 addition & 1 deletion tests/person/endpoints/test_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_api_endpoint_changelog(client):
Tests successful execution of changelog API.
"""
changelog = client.person.changelog(
current_version="31.0", origin_version="30.2", type="updated"
current_version="32.0", origin_version="31.2", type="updated"
)
assert isinstance(changelog, requests.Response)
assert changelog.status_code == 200