Skip to content

Commit

Permalink
chore: update package versions (#118)
Browse files Browse the repository at this point in the history
* chore: update package versions

- Update version to 3.0.8 in `__version__` variable
- Update version to 3.0.8 in `tool.poetry` section
- Update version to 2.1.1 in `email-validator` package
- Update version to 2.6.3 in `pydantic` package
- Update version to 8.1.0 in `pytest` package
- Update version to 0.12.4 in `tomlkit` package
- Update version to 4.10.0 in `typing-extensions` package

* chore: update pytest version to 8.1.0
  • Loading branch information
vvillait88 authored Mar 4, 2024
1 parent 922a805 commit f41a5d4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
38 changes: 19 additions & 19 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 = "3.0.7"
version = "3.0.8"
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 @@ -41,7 +41,7 @@ coverage = "^7.4.0"
docformatter = "^1.7"
flake8 = "^5.0.4"
pylint = "^3.0.3"
pytest = "^8.0.1"
pytest = "^8.1.0"
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__ = "3.0.7"
__version__ = "3.0.8"

__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__ == "3.0.7"
assert __version__ == "3.0.8"


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

0 comments on commit f41a5d4

Please sign in to comment.