File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ management:
4
4
docChecksum: ba638b2ad28966c596e28321a2003686
5
5
docVersion: 0.3.0
6
6
speakeasyVersion: internal
7
- generationVersion: 2.230.1
7
+ generationVersion: 2.233.2
8
8
releaseVersion: 3.3.2
9
9
configChecksum: edd271faa6a1bb696695699287e1224e
10
10
repoURL: https://github.com/speakeasy-api/speakeasy-client-sdk-python.git
Original file line number Diff line number Diff line change @@ -1136,4 +1136,14 @@ Based on:
1136
1136
### Generated
1137
1137
- [ python v3.3.2] .
1138
1138
### Releases
1139
+ - [ PyPI v3.3.2] https://pypi.org/project/speakeasy-client-sdk-python/3.3.2 - .
1140
+
1141
+ ## 2024-01-16 00:11:13
1142
+ ### Changes
1143
+ Based on:
1144
+ - OpenAPI Doc 0.3.0 https://docs.speakeasyapi.dev/openapi.yaml
1145
+ - Speakeasy CLI 1.141.1 (2.233.2) https://github.com/speakeasy-api/speakeasy
1146
+ ### Generated
1147
+ - [ python v3.3.2] .
1148
+ ### Releases
1139
1149
- [ PyPI v3.3.2] https://pypi.org/project/speakeasy-client-sdk-python/3.3.2 - .
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ class SDKConfiguration:
24
24
language : str = 'python'
25
25
openapi_doc_version : str = '0.3.0'
26
26
sdk_version : str = '3.3.2'
27
- gen_version : str = '2.230.1 '
28
- user_agent : str = 'speakeasy-sdk/python 3.3.2 2.230.1 0.3.0 speakeasy-client-sdk-python'
27
+ gen_version : str = '2.233.2 '
28
+ user_agent : str = 'speakeasy-sdk/python 3.3.2 2.233.2 0.3.0 speakeasy-client-sdk-python'
29
29
retry_config : RetryConfig = None
30
30
31
31
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():
75
75
if res .status_code == parsed_code :
76
76
raise TemporaryError (res )
77
77
except requests .exceptions .ConnectionError as exception :
78
- if not retries .config .config .retry_connection_errors :
78
+ if retries .config .config .retry_connection_errors :
79
79
raise
80
80
81
81
raise PermanentError (exception ) from exception
82
82
except requests .exceptions .Timeout as exception :
83
- if not retries .config .config .retry_connection_errors :
83
+ if retries .config .config .retry_connection_errors :
84
84
raise
85
85
86
86
raise PermanentError (exception ) from exception
You can’t perform that action at this time.
0 commit comments