Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 1.0.0, Speakeasy CLI 1.161.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Feb 1, 2024
1 parent c7f6f2c commit e960e5b
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ management:
docChecksum: 0dd32241bcd639c7e99747c1a7b3780d
docVersion: 1.0.0
speakeasyVersion: internal
generationVersion: 2.237.3
releaseVersion: 3.2.4
configChecksum: 3d241d76e43e062828a7f6d899a3f5bf
generationVersion: 2.245.1
releaseVersion: 3.2.5
configChecksum: d3fff4c4eecbe11a99ce401e3baa1567
repoURL: https://github.com/speakeasy-sdks/hightouch-python-sdk.git
repoSubDirectory: .
installationURL: https://github.com/speakeasy-sdks/hightouch-python-sdk.git
features:
python:
constsAndDefaults: 0.1.2
core: 4.4.2
core: 4.4.3
globalSecurity: 2.83.2
globalServerURLs: 2.82.1
unions: 2.82.5
Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -718,4 +718,12 @@ Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.148.0 (2.237.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v3.2.4] .
- [python v3.2.4] .

## 2024-02-01 00:34:49
### Changes
Based on:
- OpenAPI Doc 1.0.0
- Speakeasy CLI 1.161.0 (2.245.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v3.2.5] .
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ generation:
fixes:
nameResolutionDec2023: false
python:
version: 3.2.4
version: 3.2.5
author: Speakeasy
clientServerStatusCodesAsErrors: true
description: Python SDK for Hightouch API
Expand Down
3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,8 @@ disable=raw-checker-failed,
cyclic-import,
too-many-nested-blocks,
too-many-boolean-expressions,
no-else-raise
no-else-raise,
bare-except

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="hightouch",
version="3.2.4",
version="3.2.5",
author="Speakeasy",
description="Python SDK for Hightouch API",
long_description=long_description,
Expand All @@ -19,7 +19,7 @@
install_requires=[
"certifi>=2023.7.22",
"charset-normalizer>=3.2.0",
"dataclasses-json>=0.6.1",
"dataclasses-json @ git+https://github.com/speakeasy-api/dataclasses-json@fix-union-deserialization",
"idna>=3.4",
"jsonpath-python>=1.0.6 ",
"marshmallow>=3.19.0",
Expand All @@ -36,5 +36,6 @@
"dev":["pylint==2.16.2"]
},
package_dir={'': 'src'},
python_requires='>=3.8'
python_requires='>=3.8',
package_data={"hightouch": ["py.typed"]},
)
6 changes: 3 additions & 3 deletions src/hightouch/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class SDKConfiguration:
server_idx: int = 0
language: str = 'python'
openapi_doc_version: str = '1.0.0'
sdk_version: str = '3.2.4'
gen_version: str = '2.237.3'
user_agent: str = 'speakeasy-sdk/python 3.2.4 2.237.3 1.0.0 hightouch'
sdk_version: str = '3.2.5'
gen_version: str = '2.245.1'
user_agent: str = 'speakeasy-sdk/python 3.2.5 2.245.1 1.0.0 hightouch'
retry_config: RetryConfig = None

def get_server_details(self) -> Tuple[str, Dict[str, str]]:
Expand Down
2 changes: 1 addition & 1 deletion src/hightouch/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def unmarshal_json(data, typ, decoder=None):
out = unmarshal.from_dict({"res": json_dict})
except AttributeError as attr_err:
raise AttributeError(
f'unable to unmarshal {data} as {typ}') from attr_err
f'unable to unmarshal {data} as {typ} - {attr_err}') from attr_err

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

Expand Down

0 comments on commit e960e5b

Please sign in to comment.