Skip to content

Commit 735c52c

Browse files
committed
2 parents c3e84d3 + c33c7e2 commit 735c52c

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 1.0.0
7-
- Package version: 1.82.0
7+
- Package version: 1.83.0
88
- Generator version: 7.6.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"packageVersion": "1.82.0",
2+
"packageVersion": "1.83.0",
33
"pythonVersion": "3.8"
44
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wordlift_client"
3-
version = "1.82.0"
3+
version = "1.83.0"
44
description = "Embeddings API"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "wordlift-client"
24-
VERSION = "1.82.0"
24+
VERSION = "1.83.0"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

wordlift_client/__init__.py

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

1616

17-
__version__ = "1.82.0"
17+
__version__ = "1.83.0"
1818

1919
# import apis into sdk package
2020
from wordlift_client.api.account_api import AccountApi

wordlift_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
self.default_headers[header_name] = header_value
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = 'OpenAPI-Generator/1.82.0/python'
91+
self.user_agent = 'OpenAPI-Generator/1.83.0/python'
9292
self.client_side_validation = configuration.client_side_validation
9393

9494
async def __aenter__(self):

wordlift_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def to_debug_report(self):
395395
"OS: {env}\n"\
396396
"Python Version: {pyversion}\n"\
397397
"Version of the API: 1.0.0\n"\
398-
"SDK Package Version: 1.82.0".\
398+
"SDK Package Version: 1.83.0".\
399399
format(env=sys.platform, pyversion=sys.version)
400400

401401
def get_host_settings(self):

0 commit comments

Comments
 (0)