Skip to content

Commit d8822d3

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.307.0
1 parent 4d06038 commit d8822d3

File tree

8 files changed

+43
-16
lines changed

8 files changed

+43
-16
lines changed

.speakeasy/gen.lock

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33
management:
44
docChecksum: 48caee63217cf42b334122c89dc04004
55
docVersion: 0.4.0 .
6-
speakeasyVersion: 1.306.0
7-
generationVersion: 2.340.3
8-
releaseVersion: 5.9.10
9-
configChecksum: d2a915cd4eb0b7e3993b098cb40f0c2a
6+
speakeasyVersion: 1.307.0
7+
generationVersion: 2.342.0
8+
releaseVersion: 5.9.11
9+
configChecksum: 5c4941f0df4a7f260a07d151d775f22e
1010
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
@@ -15,7 +15,7 @@ features:
1515
python:
1616
acceptHeaders: 2.81.2
1717
additionalDependencies: 0.1.0
18-
core: 4.6.9
18+
core: 4.6.10
1919
deprecations: 2.81.1
2020
downloadStreams: 0.0.2
2121
examples: 2.81.3
@@ -45,8 +45,10 @@ generatedFiles:
4545
- src/speakeasy/embeds.py
4646
- src/speakeasy/events.py
4747
- src/speakeasy/sdk.py
48+
- Makefile
4849
- py.typed
4950
- pylintrc
51+
- scripts/publish.sh
5052
- setup.py
5153
- src/speakeasy/__init__.py
5254
- src/speakeasy/utils/__init__.py

.speakeasy/workflow.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
speakeasyVersion: 1.306.0
1+
speakeasyVersion: 1.307.0
22
sources:
33
speakeasy-openapi:
44
sourceNamespace: speakeasy-openapi
5-
sourceRevisionDigest: sha256:e5afba2c1defdb06909427b17785e4592b8f4607fbcc3aeb5ec6db78836dfade
6-
sourceBlobDigest: sha256:567bc61581ac3b4903a0568aaa305352a7d3da19bc0d7cb5bdd7e9376db4d5bb
5+
sourceRevisionDigest: sha256:108752ab53b6a94a7165cc4d8ab0fbf4f22d1079b9d7d31e5d539d25462b6c84
6+
sourceBlobDigest: sha256:996ff95a1cd5726102c119481291e31345bbecf5a77d9cef9d4d3f7d1f68bda4
77
tags:
88
- latest
99
- main
1010
targets:
1111
speakeasy-client-sdk-python:
1212
source: speakeasy-openapi
1313
sourceNamespace: speakeasy-openapi
14-
sourceRevisionDigest: sha256:e5afba2c1defdb06909427b17785e4592b8f4607fbcc3aeb5ec6db78836dfade
15-
sourceBlobDigest: sha256:567bc61581ac3b4903a0568aaa305352a7d3da19bc0d7cb5bdd7e9376db4d5bb
14+
sourceRevisionDigest: sha256:108752ab53b6a94a7165cc4d8ab0fbf4f22d1079b9d7d31e5d539d25462b6c84
15+
sourceBlobDigest: sha256:996ff95a1cd5726102c119481291e31345bbecf5a77d9cef9d4d3f7d1f68bda4
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
.PHONY: *
3+
SHELL := bash
4+
5+
publish:
6+
./scripts/publish.sh

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,4 +1656,14 @@ Based on:
16561656
### Generated
16571657
- [python v5.9.10] .
16581658
### Releases
1659-
- [PyPI v5.9.10] https://pypi.org/project/speakeasy-client-sdk-python/5.9.10 - .
1659+
- [PyPI v5.9.10] https://pypi.org/project/speakeasy-client-sdk-python/5.9.10 - .
1660+
1661+
## 2024-06-13 13:43:40
1662+
### Changes
1663+
Based on:
1664+
- OpenAPI Doc
1665+
- Speakeasy CLI 1.307.0 (2.342.0) https://github.com/speakeasy-api/speakeasy
1666+
### Generated
1667+
- [python v5.9.11] .
1668+
### Releases
1669+
- [PyPI v5.9.11] https://pypi.org/project/speakeasy-client-sdk-python/5.9.11 - .

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ generation:
1010
auth:
1111
oAuth2ClientCredentialsEnabled: false
1212
python:
13-
version: 5.9.10
13+
version: 5.9.11
1414
additionalDependencies:
1515
dependencies: {}
1616
extraDependencies:

scripts/publish.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
3+
export TWINE_USERNAME=__token__
4+
export TWINE_PASSWORD=${PYPI_TOKEN}
5+
6+
python -m pip install --upgrade pip
7+
pip install setuptools wheel twine
8+
python setup.py sdist bdist_wheel
9+
twine upload dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setuptools.setup(
2121
name='speakeasy-client-sdk-python',
22-
version='5.9.10',
22+
version='5.9.11',
2323
author='Speakeasy',
2424
description='Speakeasy API Client SDK for Python',
2525
url='https://github.com/speakeasy-api/speakeasy-client-sdk-python.git',

src/speakeasy/sdkconfiguration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class SDKConfiguration:
2626
server: Optional[str] = ''
2727
language: str = 'python'
2828
openapi_doc_version: str = '0.4.0 .'
29-
sdk_version: str = '5.9.10'
30-
gen_version: str = '2.340.3'
31-
user_agent: str = 'speakeasy-sdk/python 5.9.10 2.340.3 0.4.0 . speakeasy-client-sdk-python'
29+
sdk_version: str = '5.9.11'
30+
gen_version: str = '2.342.0'
31+
user_agent: str = 'speakeasy-sdk/python 5.9.11 2.342.0 0.4.0 . speakeasy-client-sdk-python'
3232
retry_config: Optional[RetryConfig] = None
3333

3434
def __post_init__(self):

0 commit comments

Comments
 (0)