Skip to content

Commit

Permalink
add tests for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
vvillait88 committed Sep 2, 2024
1 parent 41b6b5b commit 07c732b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
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.0.1"
__version__ = "4.0.2"

__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.0.1"
assert __version__ == "4.0.2"


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

0 comments on commit 07c732b

Please sign in to comment.