File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed
Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ generation:
1414 oAuth2ClientCredentialsEnabled : false
1515 oAuth2PasswordEnabled : false
1616python :
17- version : 0.39.1
17+ version : 0.40.0-dev
1818 additionalDependencies :
1919 dev :
2020 deepdiff : ' >=6.0'
Original file line number Diff line number Diff line change 11[project ]
22name = " unstructured-client"
3- version = " 0.39.1 "
3+ version = " 0.40.0-dev "
44description = " Python Client SDK for Unstructured API"
55authors = [{ name = " Unstructured" },]
66readme = " README-PYPI.md"
77requires-python = " >=3.9.2"
88dependencies = [
99 " aiofiles >=24.1.0" ,
1010 " cryptography >=3.1" ,
11+ " httpcore >=1.0.9" ,
1112 " httpx >=0.27.0" ,
12- " pydantic >=2.10.3" ,
13- " nest-asyncio >=1.6.0" ,
13+ " pydantic >=2.11.2" ,
1414 " pypdf >=4.0" ,
1515 " requests-toolbelt >=1.0.0" ,
1616]
@@ -52,6 +52,8 @@ pythonpath = ["src"]
5252
5353[tool .mypy ]
5454disable_error_code = " misc"
55+ explicit_package_bases = true
56+ mypy_path = " src"
5557
5658[[tool .mypy .overrides ]]
5759module = " typing_inspect"
Original file line number Diff line number Diff line change 33import importlib .metadata
44
55__title__ : str = "unstructured-client"
6- __version__ : str = "0.39.1"
7- __openapi_doc_version__ : str = "1.1.34"
8- __gen_version__ : str = "2.610.0"
9- __user_agent__ : str = "speakeasy-sdk/python 0.39.1 2.610.0 1.1.34 unstructured-client"
6+ __version__ : str = "0.40.0-dev"
7+ __openapi_doc_version__ : str = "1.1.39"
8+ __gen_version__ : str = "2.632.2"
9+ __user_agent__ : str = (
10+ "speakeasy-sdk/python 0.40.0-dev 2.632.2 1.1.39 unstructured-client"
11+ )
1012
1113try :
1214 if __package__ is not None :
You can’t perform that action at this time.
0 commit comments