File tree Expand file tree Collapse file tree 6 files changed +22
-12
lines changed Expand file tree Collapse file tree 6 files changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ management:
44 docChecksum: 559aacf6828c62bd379326645382b3ba
55 docVersion: 0.0.1
66 speakeasyVersion: internal
7- generationVersion: 2.231.0
8- releaseVersion: 0.15.2
9- configChecksum: c7f5587d10f16ad71c809e8627e64175
7+ generationVersion: 2.233.2
8+ releaseVersion: 0.15.3
9+ configChecksum: 2e2a4386f71b10d46d24683e1b2cb31c
1010 repoURL: https://github.com/Unstructured-IO/unstructured-python-client.git
1111 repoSubDirectory: .
1212 installationURL: https://github.com/Unstructured-IO/unstructured-python-client.git
@@ -18,7 +18,7 @@ features:
1818 globalSecurity: 2.83.1
1919 globalServerURLs: 2.82.1
2020 nameOverrides: 2.81.1
21- retries: 2.82.0
21+ retries: 2.82.1
2222 serverIDs: 2.81.1
2323 unions: 2.82.5
2424generatedFiles:
Original file line number Diff line number Diff line change @@ -354,4 +354,14 @@ Based on:
354354### Generated
355355- [ python v0.15.2] .
356356### Releases
357- - [ PyPI v0.15.2] https://pypi.org/project/unstructured-client/0.15.2 - .
357+ - [ PyPI v0.15.2] https://pypi.org/project/unstructured-client/0.15.2 - .
358+
359+ ## 2024-01-16 00:19:58
360+ ### Changes
361+ Based on:
362+ - OpenAPI Doc 0.0.1
363+ - Speakeasy CLI 1.141.1 (2.233.2) https://github.com/speakeasy-api/speakeasy
364+ ### Generated
365+ - [ python v0.15.3] .
366+ ### Releases
367+ - [ PyPI v0.15.3] https://pypi.org/project/unstructured-client/0.15.3 - .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ generation:
66 fixes :
77 nameResolutionDec2023 : false
88python :
9- version : 0.15.2
9+ version : 0.15.3
1010 author : Unstructured
1111 clientServerStatusCodesAsErrors : true
1212 description : Python Client SDK for Unstructured API
Original file line number Diff line number Diff line change 1010
1111setuptools .setup (
1212 name = "unstructured-client" ,
13- version = "0.15.2 " ,
13+ version = "0.15.3 " ,
1414 author = "Unstructured" ,
1515 description = "Python Client SDK for Unstructured API" ,
1616 long_description = long_description ,
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ class SDKConfiguration:
2727 server : str = ''
2828 language : str = 'python'
2929 openapi_doc_version : str = '0.0.1'
30- sdk_version : str = '0.15.2 '
31- gen_version : str = '2.231.0 '
32- user_agent : str = 'speakeasy-sdk/python 0.15.2 2.231.0 0.0.1 unstructured-client'
30+ sdk_version : str = '0.15.3 '
31+ gen_version : str = '2.233.2 '
32+ user_agent : str = 'speakeasy-sdk/python 0.15.3 2.233.2 0.0.1 unstructured-client'
3333 retry_config : RetryConfig = None
3434
3535 def get_server_details (self ) -> Tuple [str , Dict [str , str ]]:
Original file line number Diff line number Diff line change @@ -75,12 +75,12 @@ def do_request():
7575 if res .status_code == parsed_code :
7676 raise TemporaryError (res )
7777 except requests .exceptions .ConnectionError as exception :
78- if not retries .config .config .retry_connection_errors :
78+ if retries .config .config .retry_connection_errors :
7979 raise
8080
8181 raise PermanentError (exception ) from exception
8282 except requests .exceptions .Timeout as exception :
83- if not retries .config .config .retry_connection_errors :
83+ if retries .config .config .retry_connection_errors :
8484 raise
8585
8686 raise PermanentError (exception ) from exception
You can’t perform that action at this time.
0 commit comments