File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[metadata]
22name = validkit
3- version = 1.2.0
3+ version = 1.2.1
44author = ValidKit
55author_email = developers@validkit.com
6- description = Python SDK for ValidKit Email Verification API - Built for AI Agents
6+ description = Python SDK for ValidKit — email validation for signup flows
77long_description = file: README.md
88long_description_content_type = text/markdown
99url = https://github.com/ValidKit/validkit-python-sdk
Original file line number Diff line number Diff line change 99
1010setup (
1111 name = "validkit" ,
12- version = "1.2.0 " ,
12+ version = "1.2.1 " ,
1313 author = "ValidKit" ,
1414 author_email = "developers@validkit.com" ,
15- description = "Python SDK for ValidKit Email Verification API - Built for AI Agents " ,
15+ description = "Python SDK for ValidKit — email validation for signup flows " ,
1616 long_description = long_description ,
1717 long_description_content_type = "text/markdown" ,
1818 url = "https://github.com/ValidKit/validkit-python-sdk" ,
4444 "flake8>=6.0.0" ,
4545 ]
4646 },
47- keywords = "email verification validation api async ai agents batch " ,
47+ keywords = "email verification validation api async signup " ,
4848 project_urls = {
4949 "Documentation" : "https://docs.validkit.com/sdks/python" ,
5050 "PyPI" : "https://pypi.org/project/validkit/" ,
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ def test_defaults(self):
3939
4040 def test_user_agent_contains_version (self ):
4141 config = ValidKitConfig (api_key = "test" )
42- assert "1.2.0 " in config .user_agent
42+ assert "1.2.1 " in config .user_agent
4343
4444 def test_headers_include_sdk_version (self ):
4545 config = ValidKitConfig (api_key = "test" )
46- assert config .headers ["X-SDK-Version" ] == "1.2.0 "
46+ assert config .headers ["X-SDK-Version" ] == "1.2.1 "
4747 assert config .headers ["X-SDK-Language" ] == "python"
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def test_import_exceptions():
5353
5454def test_version ():
5555 from validkit import __version__
56- assert __version__ == "1.2.0 "
56+ assert __version__ == "1.2.1 "
5757
5858
5959def test_version_single_source_of_truth ():
Original file line number Diff line number Diff line change 11"""
22ValidKit Python SDK
3- Email verification for AI agents and high-volume applications
3+ Email validation for signup flows.
44"""
55
66from .sync_client import ValidKit
Original file line number Diff line number Diff line change 11"""Single source of truth for the SDK version."""
22
3- __version__ = "1.2.0 "
3+ __version__ = "1.2.1 "
You can’t perform that action at this time.
0 commit comments