Skip to content

Commit 407d8f3

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.161.0
1 parent 6b3e90c commit 407d8f3

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

.speakeasy/gen.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ management:
44
docChecksum: 2516596125ef223fbbef6c434d22eaac
55
docVersion: 1.0.0
66
speakeasyVersion: internal
7-
generationVersion: 2.237.2
8-
releaseVersion: 0.11.3
9-
configChecksum: 8f6c05f4b24cd03c0c39dad64dadb040
7+
generationVersion: 2.245.1
8+
releaseVersion: 0.11.4
9+
configChecksum: 8468bc8b7407b27215139a89192c5663
1010
repoURL: https://github.com/speakeasy-sdks/test-repo-test2.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/speakeasy-sdks/test-repo-test2.git
1313
features:
1414
python:
15-
core: 4.4.2
15+
core: 4.4.3
1616
globalServerURLs: 2.82.1
1717
generatedFiles:
1818
- src/test/sdkconfiguration.py

RELEASES.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -270,4 +270,12 @@ Based on:
270270
- OpenAPI Doc 1.0.0
271271
- Speakeasy CLI 1.147.0 (2.237.2) https://github.com/speakeasy-api/speakeasy
272272
### Generated
273-
- [python v0.11.3] .
273+
- [python v0.11.3] .
274+
275+
## 2024-02-01 00:01:23
276+
### Changes
277+
Based on:
278+
- OpenAPI Doc 1.0.0
279+
- Speakeasy CLI 1.161.0 (2.245.1) https://github.com/speakeasy-api/speakeasy
280+
### Generated
281+
- [python v0.11.4] .

gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ generation:
66
fixes:
77
nameResolutionDec2023: false
88
python:
9-
version: 0.11.3
9+
version: 0.11.4
1010
author: my-test
1111
clientServerStatusCodesAsErrors: true
1212
description: Python Client SDK Generated by Speakeasy

pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,8 @@ disable=raw-checker-failed,
440440
cyclic-import,
441441
too-many-nested-blocks,
442442
too-many-boolean-expressions,
443-
no-else-raise
443+
no-else-raise,
444+
bare-except
444445

445446
# Enable the message, report, category or checker with the given id(s). You can
446447
# either give multiple identifier separated by comma (,) or put this option

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="test",
13-
version="0.11.3",
13+
version="0.11.4",
1414
author="my-test",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,
@@ -19,7 +19,7 @@
1919
install_requires=[
2020
"certifi>=2023.7.22",
2121
"charset-normalizer>=3.2.0",
22-
"dataclasses-json>=0.6.1",
22+
"dataclasses-json @ git+https://github.com/speakeasy-api/dataclasses-json@fix-union-deserialization",
2323
"idna>=3.4",
2424
"jsonpath-python>=1.0.6 ",
2525
"marshmallow>=3.19.0",
@@ -36,5 +36,6 @@
3636
"dev":["pylint==2.16.2"]
3737
},
3838
package_dir={'': 'src'},
39-
python_requires='>=3.8'
39+
python_requires='>=3.8',
40+
package_data={"test": ["py.typed"]},
4041
)

src/test/sdkconfiguration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class SDKConfiguration:
1919
server_idx: int = 0
2020
language: str = 'python'
2121
openapi_doc_version: str = '1.0.0'
22-
sdk_version: str = '0.11.3'
23-
gen_version: str = '2.237.2'
24-
user_agent: str = 'speakeasy-sdk/python 0.11.3 2.237.2 1.0.0 test'
22+
sdk_version: str = '0.11.4'
23+
gen_version: str = '2.245.1'
24+
user_agent: str = 'speakeasy-sdk/python 0.11.4 2.245.1 1.0.0 test'
2525
retry_config: RetryConfig = None
2626

2727
def get_server_details(self) -> Tuple[str, Dict[str, str]]:

src/test/utils/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def unmarshal_json(data, typ, decoder=None):
695695
out = unmarshal.from_dict({"res": json_dict})
696696
except AttributeError as attr_err:
697697
raise AttributeError(
698-
f'unable to unmarshal {data} as {typ}') from attr_err
698+
f'unable to unmarshal {data} as {typ} - {attr_err}') from attr_err
699699

700700
return out.res if decoder is None else decoder(out.res)
701701

0 commit comments

Comments
 (0)