Skip to content

Commit 0d23b66

Browse files
committed
update tests
1 parent 2822a33 commit 0d23b66

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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"

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)