Skip to content

Commit 1a672a7

Browse files
Update Python SDK (#134)
[bot](2026-01-28 12:08:53) Sync SDK with OpenAPI spec Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c34a3f0 commit 1a672a7

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vulncheck_sdk"
3-
version = "0.0.39"
3+
version = "0.0.40"
44
description = "VulnCheck API"
55
authors = [
66
{name = "VulnCheck API Support",email = "support@vulncheck.com"},
@@ -14,8 +14,8 @@ dependencies = [
1414
"python-dateutil (>=2.8.2)",
1515
"pydantic (>=2)",
1616
"typing-extensions (>=4.7.1)",
17-
"aiohttp (>=3.13.3,<4.0.0)",
18-
"aiohttp-retry (>=2.9.1,<3.0.0)",
17+
"aiohttp (>=3.8.4)",
18+
"aiohttp-retry (>=2.8.3)",
1919
]
2020

2121
[project.urls]

python-generator-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ additionalProperties:
22
projectName: "vulncheck-sdk"
33
packageName: "vulncheck_sdk"
44
packageUrl: "https://github.com/vulncheck-oss/sdk-python/tree/main"
5-
packageVersion: "0.0.39"
5+
packageVersion: "0.0.40"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ urllib3 >= 2.1.0, < 3.0.0
22
python_dateutil >= 2.8.2
33
pydantic >= 2
44
typing-extensions >= 4.7.1
5-
aiohttp>=3.13.2
6-
aiohttp_retry>=2.9.1
5+
aiohttp>=3.8.4
6+
aiohttp_retry>=2.8.3

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "vulncheck-sdk"
25-
VERSION = "0.0.39"
25+
VERSION = "0.0.40"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
28-
"aiohttp_retry >= 2.9.1",
29-
"aiohttp >= 3.13.2",
28+
"aiohttp_retry >= 2.8.3",
29+
"aiohttp >= 3.8.4",
3030
"urllib3 >= 2.1.0, < 3.0.0",
3131
"python-dateutil >= 2.8.2",
3232
"pydantic >= 2",

vulncheck_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.0.39"
18+
__version__ = "0.0.40"
1919

2020
# Define package exports
2121
__all__ = [

vulncheck_sdk/aio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.0.39"
18+
__version__ = "0.0.40"
1919

2020
# Define package exports
2121
__all__ = [

vulncheck_sdk/aio/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/0.0.39/python'
95+
self.user_agent = 'OpenAPI-Generator/0.0.40/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
async def __aenter__(self):

vulncheck_sdk/aio/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def to_debug_report(self) -> str:
532532
"OS: {env}\n"\
533533
"Python Version: {pyversion}\n"\
534534
"Version of the API: 3.0\n"\
535-
"SDK Package Version: 0.0.39".\
535+
"SDK Package Version: 0.0.40".\
536536
format(env=sys.platform, pyversion=sys.version)
537537

538538
def get_host_settings(self) -> List[HostSetting]:

vulncheck_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/0.0.39/python'
95+
self.user_agent = 'OpenAPI-Generator/0.0.40/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

0 commit comments

Comments
 (0)