Skip to content

Commit 15014ba

Browse files
committed
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.161.0
1 parent 012c511 commit 15014ba

File tree

7 files changed

+26
-14
lines changed

7 files changed

+26
-14
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ management:
44
docChecksum: c101e6356aa26bcdee80457c4dc64471
55
docVersion: 1.0.0
66
speakeasyVersion: internal
7-
generationVersion: 2.237.2
8-
releaseVersion: 0.44.3
9-
configChecksum: e5234746f9bb8bf377f8400720a7b273
7+
generationVersion: 2.245.1
8+
releaseVersion: 0.45.0
9+
configChecksum: 42983d0d51ddc2618bf4cbf0315e060d
1010
repoURL: https://github.com/airbytehq/airbyte-api-python-sdk.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/airbytehq/airbyte-api-python-sdk.git
@@ -15,7 +15,7 @@ features:
1515
python:
1616
additionalProperties: 0.1.0
1717
constsAndDefaults: 0.1.2
18-
core: 4.4.2
18+
core: 4.4.3
1919
globalSecurity: 2.83.2
2020
globalServerURLs: 2.82.1
2121
unions: 2.82.5

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,4 +808,14 @@ Based on:
808808
### Generated
809809
- [python v0.44.3] .
810810
### Releases
811-
- [PyPI v0.44.3] https://pypi.org/project/airbyte-api/0.44.3 - .
811+
- [PyPI v0.44.3] https://pypi.org/project/airbyte-api/0.44.3 - .
812+
813+
## 2024-02-01 00:14:45
814+
### Changes
815+
Based on:
816+
- OpenAPI Doc 1.0.0
817+
- Speakeasy CLI 1.161.0 (2.245.1) https://github.com/speakeasy-api/speakeasy
818+
### Generated
819+
- [python v0.45.0] .
820+
### Releases
821+
- [PyPI v0.45.0] https://pypi.org/project/airbyte-api/0.45.0 - .

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ generation:
77
fixes:
88
nameResolutionDec2023: false
99
python:
10-
version: 0.44.3
10+
version: 0.45.0
1111
author: Airbyte
1212
clientServerStatusCodesAsErrors: true
1313
description: Python Client SDK for Airbyte API

pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,8 @@ disable=raw-checker-failed,
441441
cyclic-import,
442442
too-many-nested-blocks,
443443
too-many-boolean-expressions,
444-
no-else-raise
444+
no-else-raise,
445+
bare-except
445446

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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="airbyte-api",
13-
version="0.44.3",
13+
version="0.45.0",
1414
author="Airbyte",
1515
description="Python Client SDK for Airbyte API",
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={"airbyte-api": ["py.typed"]},
4041
)

src/airbyte/sdkconfiguration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class SDKConfiguration:
2222
server_idx: int = 0
2323
language: str = 'python'
2424
openapi_doc_version: str = '1.0.0'
25-
sdk_version: str = '0.44.3'
26-
gen_version: str = '2.237.2'
27-
user_agent: str = 'speakeasy-sdk/python 0.44.3 2.237.2 1.0.0 airbyte-api'
25+
sdk_version: str = '0.45.0'
26+
gen_version: str = '2.245.1'
27+
user_agent: str = 'speakeasy-sdk/python 0.45.0 2.245.1 1.0.0 airbyte-api'
2828
retry_config: RetryConfig = None
2929

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

src/airbyte/utils/utils.py

Lines changed: 1 addition & 1 deletion
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)