Skip to content

Commit c2f3281

Browse files
Bump pyflakes from 2.5.0 to 3.3.2 (#198)
* Bump pyflakes from 2.5.0 to 3.3.2 Bumps [pyflakes](https://github.com/PyCQA/pyflakes) from 2.5.0 to 3.3.2. - [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst) - [Commits](PyCQA/pyflakes@2.5.0...3.3.2) --- updated-dependencies: - dependency-name: pyflakes dependency-version: 3.3.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Varun Villait <vvillait88@yahoo.com>
1 parent 6a049e9 commit c2f3281

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.0.1"
3+
version = "6.1.0"
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
@@ -357,9 +357,9 @@ pydantic-core==2.27.2 ; python_version >= "3.8" and python_version < "4.0" \
357357
pydantic==2.10.6 ; python_version >= "3.8" and python_version < "4.0" \
358358
--hash=sha256:427d664bf0b8a2b34ff5dd0f5a18df00591adcee7198fbd71981054cef37b584 \
359359
--hash=sha256:ca5daa827cce33de7a42be142548b0096bf05a7e7b365aebfa5f8eeec7128236
360-
pyflakes==2.5.0 ; python_version >= "3.8" and python_version < "4.0" \
361-
--hash=sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2 \
362-
--hash=sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3
360+
pyflakes==3.3.2 ; python_version >= "3.8" and python_version < "4.0" \
361+
--hash=sha256:5039c8339cbb1944045f4ee5466908906180f13cc99cc9949348d10f82a5c32a \
362+
--hash=sha256:6dfd61d87b97fba5dcfaaf781171ac16be16453be6d816147989e7f6e6a9576b
363363
pylint==3.2.7 ; python_version >= "3.8" and python_version < "4.0" \
364364
--hash=sha256:02f4aedeac91be69fb3b4bea997ce580a4ac68ce58b89eaefeaf06749df73f4b \
365365
--hash=sha256:1b7a721b575eaeaa7d39db076b6e7743c993ea44f57979127c517c6c572c803e

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.0.1"
8+
__version__ = "6.1.0"
99

1010
__all__ = ["PDLPY"]

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.0.1"
22+
assert __version__ == "6.1.0"
2323

2424

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

0 commit comments

Comments
 (0)