Skip to content

Commit

Permalink
Bump pytest from 8.3.3 to 8.3.4 (#162)
Browse files Browse the repository at this point in the history
* Bump pytest from 8.3.3 to 8.3.4

Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.3 to 8.3.4.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* dependencies

---------

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]>
  • Loading branch information
dependabot[bot] and vvillait88 authored Dec 2, 2024
1 parent 3750d43 commit 1ce23c7
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 15 deletions.
52 changes: 41 additions & 11 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "peopledatalabs"
version = "4.1.3"
version = "4.1.4"
description = "Official Python client for the People Data Labs API"
homepage = "https://www.peopledatalabs.com"
repository = "https://github.com/peopledatalabs/peopledatalabs-python"
Expand Down Expand Up @@ -40,7 +40,7 @@ coverage = "^7.6.1"
docformatter = "^1.7"
flake8 = "^5.0.4"
pylint = "^3.2.7"
pytest = "^8.3.3"
pytest = "^8.3.4"
pyupgrade = "^3.3.2"

[build-system]
Expand Down
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__ = "4.1.3"
__version__ = "4.1.4"

__all__ = ["PDLPY"]
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__ == "4.1.3"
assert __version__ == "4.1.4"


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

0 comments on commit 1ce23c7

Please sign in to comment.