Skip to content

Commit 0bafa45

Browse files
committed
ci: regenerated with OpenAPI Doc 0.4.0, Speakeasy CLI 1.235.1
1 parent 9121b25 commit 0bafa45

File tree

5 files changed

+38
-20
lines changed

5 files changed

+38
-20
lines changed

.speakeasy/gen.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ id: b0b519b1-d1d3-43b2-82dd-b4292eadd4b0
33
management:
44
docChecksum: 17e2e733dfd588a7103c3c70e91b24b5
55
docVersion: 0.4.0
6-
speakeasyVersion: 1.233.1
7-
generationVersion: 2.296.1
8-
releaseVersion: 5.6.0
9-
configChecksum: 9e1778aea2b2d51dc7adb835b6d193c2
6+
speakeasyVersion: 1.235.1
7+
generationVersion: 2.298.1
8+
releaseVersion: 5.6.1
9+
configChecksum: 1f3df38ca829db6d00494bdf350f7dc2
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
1313
published: true
1414
features:
1515
python:
16-
core: 4.6.0
16+
core: 4.6.1
1717
downloadStreams: 0.0.2
1818
examples: 2.81.3
1919
globalSecurity: 2.83.5

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1386,4 +1386,14 @@ Based on:
13861386
### Generated
13871387
- [python v5.6.0] .
13881388
### Releases
1389-
- [PyPI v5.6.0] https://pypi.org/project/speakeasy-client-sdk-python/5.6.0 - .
1389+
- [PyPI v5.6.0] https://pypi.org/project/speakeasy-client-sdk-python/5.6.0 - .
1390+
1391+
## 2024-04-03 08:58:46
1392+
### Changes
1393+
Based on:
1394+
- OpenAPI Doc 0.4.0 https://docs.speakeasyapi.dev/openapi.yaml
1395+
- Speakeasy CLI 1.235.1 (2.298.1) https://github.com/speakeasy-api/speakeasy
1396+
### Generated
1397+
- [python v5.6.1] .
1398+
### Releases
1399+
- [PyPI v5.6.1] https://pypi.org/project/speakeasy-client-sdk-python/5.6.1 - .

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.6.0
13+
version: 5.6.1
1414
additionalDependencies:
1515
dependencies: {}
1616
extraDependencies:

setup.py

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
22

33
import setuptools
4+
import re
45

56
try:
6-
with open("README.md", "r") as fh:
7+
with open('README.md', 'r') as fh:
78
long_description = fh.read()
9+
GITHUB_URL = 'https://github.com/speakeasy-api/speakeasy-client-sdk-python.git'
10+
# links on PyPI should have absolute URLs
11+
long_description = re.sub(
12+
r'(\[[^\]]+\]\()((?!https?:)[^\)]+)(\))',
13+
lambda m: m.group(1) + GITHUB_URL + '/blob/master/' + m.group(2) + m.group(3),
14+
long_description,
15+
)
816
except FileNotFoundError:
9-
long_description = ""
17+
long_description = ''
1018

1119
setuptools.setup(
12-
name="speakeasy-client-sdk-python",
13-
version="5.6.0",
14-
author="Speakeasy",
15-
description="Speakeasy API Client SDK for Python",
16-
url="https://github.com/speakeasy-api/speakeasy-client-sdk-python.git",
20+
name='speakeasy-client-sdk-python',
21+
version='5.6.1',
22+
author='Speakeasy',
23+
description='Speakeasy API Client SDK for Python',
24+
url='https://github.com/speakeasy-api/speakeasy-client-sdk-python.git',
1725
long_description=long_description,
18-
long_description_content_type="text/markdown",
19-
packages=setuptools.find_packages(where="src"),
26+
long_description_content_type='text/markdown',
27+
packages=setuptools.find_packages(where='src'),
2028
install_requires=[
2129
"certifi>=2023.7.22",
2230
"charset-normalizer>=3.2.0",
@@ -40,5 +48,5 @@
4048
},
4149
package_dir={'': 'src'},
4250
python_requires='>=3.8',
43-
package_data={"speakeasy-client-sdk-python": ["py.typed"]},
51+
package_data={'speakeasy-client-sdk-python': ['py.typed']},
4452
)

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
globals: Dict[str, Dict[str, Dict[str, Any]]] = field(default_factory=Dict)
2727
language: str = 'python'
2828
openapi_doc_version: str = '0.4.0'
29-
sdk_version: str = '5.6.0'
30-
gen_version: str = '2.296.1'
31-
user_agent: str = 'speakeasy-sdk/python 5.6.0 2.296.1 0.4.0 speakeasy-client-sdk-python'
29+
sdk_version: str = '5.6.1'
30+
gen_version: str = '2.298.1'
31+
user_agent: str = 'speakeasy-sdk/python 5.6.1 2.298.1 0.4.0 speakeasy-client-sdk-python'
3232
retry_config: Optional[RetryConfig] = None
3333
_hooks: Optional[SDKHooks] = None
3434

0 commit comments

Comments
 (0)