Skip to content

Commit f9da468

Browse files
fix(sdk): remove AI agent positioning from PyPI metadata (#2)
* fix(sdk): remove AI agent positioning from PyPI metadata Update description, keywords, and module docstring to reflect developer signup flow use case rather than AI agent framing. Bump patch version to 1.2.1 for republish. Closes #2257 * test(sdk): update hardcoded version assertions to 1.2.1
1 parent 73cdfae commit f9da468

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[metadata]
22
name = validkit
3-
version = 1.2.0
3+
version = 1.2.1
44
author = ValidKit
55
author_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
77
long_description = file: README.md
88
long_description_content_type = text/markdown
99
url = https://github.com/ValidKit/validkit-python-sdk

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
setup(
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",
@@ -44,7 +44,7 @@
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/",

tests/test_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

tests/test_imports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_import_exceptions():
5353

5454
def test_version():
5555
from validkit import __version__
56-
assert __version__ == "1.2.0"
56+
assert __version__ == "1.2.1"
5757

5858

5959
def test_version_single_source_of_truth():

validkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
ValidKit Python SDK
3-
Email verification for AI agents and high-volume applications
3+
Email validation for signup flows.
44
"""
55

66
from .sync_client import ValidKit

validkit/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Single source of truth for the SDK version."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1"

0 commit comments

Comments
 (0)