Skip to content

Commit de2be4b

Browse files
committed
ci: regenerated with OpenAPI Doc 0.3.0, Speakeay CLI 1.40.3
1 parent aa304c5 commit de2be4b

File tree

6 files changed

+40
-28
lines changed

6 files changed

+40
-28
lines changed

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
build/
2-
dist/
3-
env/
4-
*.egg-info/
5-
__pycache__/
1+
venv/
2+
src/*.egg-info/
3+
__pycache__/
4+
.pytest_cache/
5+
.python-version`

RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,4 +502,12 @@ Based on:
502502
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
503503
- Speakeasy CLI 1.38.0 (2.32.7) https://github.com/speakeasy-api/speakeasy
504504
### Releases
505-
- [PyPI v1.29.1] https://pypi.org/project/speakeasy-client-sdk-python/1.29.1 - .
505+
- [PyPI v1.29.1] https://pypi.org/project/speakeasy-client-sdk-python/1.29.1 - .
506+
507+
## 2023-06-01 15:09:51
508+
### Changes
509+
Based on:
510+
- OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
511+
- Speakeasy CLI 1.40.3 (2.34.7) https://github.com/speakeasy-api/speakeasy
512+
### Releases
513+
- [PyPI v1.30.0] https://pypi.org/project/speakeasy-client-sdk-python/1.30.0 - .

files.gen

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ src/speakeasy/plugins.py
66
src/speakeasy/requests.py
77
src/speakeasy/schemas.py
88
src/speakeasy/sdk.py
9+
.gitignore
910
pylintrc
1011
setup.py
1112
src/speakeasy/__init__.py

gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ configVersion: 1.0.0
22
management:
33
docChecksum: 2bba3b8f9d211b02569b3f9aff0d34b4
44
docVersion: 0.3.0
5-
speakeasyVersion: 1.38.0
6-
generationVersion: 2.32.7
5+
speakeasyVersion: 1.40.3
6+
generationVersion: 2.34.7
77
generation:
88
sdkClassName: speakeasy
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 1.29.1
12+
version: 1.30.0
1313
author: Speakeasy
1414
description: Speakeasy API Client SDK for Python
1515
maxMethodParams: 0

setup.py

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,33 @@
1010

1111
setuptools.setup(
1212
name="speakeasy-client-sdk-python",
13-
version="1.29.1",
13+
version="1.30.0",
1414
author="Speakeasy",
1515
description="Speakeasy API Client SDK for Python",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",
1818
packages=setuptools.find_packages(where="src"),
1919
install_requires=[
20-
"certifi==2022.12.7",
21-
"charset-normalizer==2.1.1",
22-
"dataclasses-json-speakeasy==0.5.8",
23-
"idna==3.3",
24-
"marshmallow==3.17.1",
25-
"marshmallow-enum==1.5.1",
26-
"mypy-extensions==0.4.3",
27-
"packaging==21.3",
28-
"pyparsing==3.0.9",
29-
"python-dateutil==2.8.2",
30-
"requests==2.28.1",
31-
"six==1.16.0",
32-
"typing-inspect==0.8.0",
33-
"typing_extensions==4.3.0",
34-
"urllib3==1.26.12",
35-
"pylint==2.16.2",
20+
"certifi>=2022.12.7",
21+
"charset-normalizer>=2.1.1",
22+
"dataclasses-json-speakeasy>=0.5.8",
23+
"idna>=3.3",
24+
"jsonpath-python>=1.0.6 ",
25+
"marshmallow>=3.17.1",
26+
"marshmallow-enum>=1.5.1",
27+
"mypy-extensions>=0.4.3",
28+
"packaging>=21.3",
29+
"pyparsing>=3.0.9",
30+
"python-dateutil>=2.8.2",
31+
"requests>=2.28.1",
32+
"six>=1.16.0",
33+
"typing-inspect>=0.8.0",
34+
"typing_extensions>=4.3.0",
35+
"urllib3>=1.26.12",
3636
],
37+
extras_require={
38+
"dev":["pylint==2.16.2"]
39+
},
3740
package_dir={'': 'src'},
3841
python_requires='>=3.9'
3942
)

src/speakeasy/sdk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class Speakeasy:
4141
_security_client: requests_http.Session
4242
_server_url: str = SERVERS[SERVER_PROD]
4343
_language: str = "python"
44-
_sdk_version: str = "1.29.1"
45-
_gen_version: str = "2.32.7"
44+
_sdk_version: str = "1.30.0"
45+
_gen_version: str = "2.34.7"
4646

4747
def __init__(self,
4848
security: shared.Security = None,

0 commit comments

Comments
 (0)