Skip to content

Commit 6b81b5c

Browse files
Bump exceptiongroup from 1.3.0 to 1.3.1 (#248)
* Bump exceptiongroup from 1.3.0 to 1.3.1 Bumps [exceptiongroup](https://github.com/agronholm/exceptiongroup) from 1.3.0 to 1.3.1. - [Release notes](https://github.com/agronholm/exceptiongroup/releases) - [Changelog](https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst) - [Commits](agronholm/exceptiongroup@1.3.0...1.3.1) --- updated-dependencies: - dependency-name: exceptiongroup dependency-version: 1.3.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * updates --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Varun Villait <[email protected]>
1 parent 36cb6b0 commit 6b81b5c

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ else:
417417
418418
```python
419419
result = client.ip(
420-
ip="72.212.42.169",
420+
ip="72.212.42.228",
421421
)
422422
if result.ok:
423423
print(result.text)

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.8"
3+
version = "6.4.9"
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_dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ docformatter==1.7.6 ; python_version >= "3.8" and python_version < "4.0" \
238238
email-validator==2.3.0 ; python_version >= "3.8" and python_version < "4.0" \
239239
--hash=sha256:80f13f623413e6b197ae73bb10bf4eb0908faf509ad8362c5edeb0be7fd450b4 \
240240
--hash=sha256:9fc05c37f2f6cf439ff414f8fc46d917929974a82244c20eb10231ba60c54426
241-
exceptiongroup==1.3.0 ; python_version >= "3.8" and python_version < "3.11" \
242-
--hash=sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10 \
243-
--hash=sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88
241+
exceptiongroup==1.3.1 ; python_version >= "3.8" and python_version < "3.11" \
242+
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
243+
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
244244
flake8==5.0.4 ; python_version >= "3.8" and python_version < "4.0" \
245245
--hash=sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db \
246246
--hash=sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248

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

2424

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

tests/client/test_ip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_api_endpoint_ip(client):
3131
Tests successful execution of IP API.
3232
"""
3333
completion = client.ip(
34-
ip="72.212.42.169",
34+
ip="72.212.42.228",
3535
)
3636
assert isinstance(completion, requests.Response)
3737
assert completion.status_code == 200
@@ -43,7 +43,7 @@ def test_api_endpoint_ip_with_min_confidence(client):
4343
Tests successful execution of IP API with min_confidence.
4444
"""
4545
completion = client.ip(
46-
ip="72.212.42.169",
46+
ip="72.212.42.228",
4747
min_confidence="very high",
4848
)
4949
assert isinstance(completion, requests.Response)

0 commit comments

Comments
 (0)