Skip to content

Commit 0da9d77

Browse files
(rc): support pydantic v2 models (elevenlabs#328)
1 parent 7af17bc commit 0da9d77

File tree

108 files changed

+10335
-5852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+10335
-5852
lines changed

poetry.lock

Lines changed: 49 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,51 @@
11
[tool.poetry]
22
name = "elevenlabs"
3-
version = "v1.5.0"
3+
version = "v1.6.0rc0"
44
description = ""
55
readme = "README.md"
66
authors = []
7+
keywords = []
8+
license = "MIT"
9+
classifiers = [
10+
"Intended Audience :: Developers",
11+
"Programming Language :: Python",
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.8",
14+
"Programming Language :: Python :: 3.9",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Operating System :: OS Independent",
19+
"Operating System :: POSIX",
20+
"Operating System :: MacOS",
21+
"Operating System :: POSIX :: Linux",
22+
"Operating System :: Microsoft :: Windows",
23+
"Topic :: Software Development :: Libraries :: Python Modules",
24+
"Typing :: Typed",
25+
"License :: OSI Approved :: MIT License"
26+
]
727
packages = [
828
{ include = "elevenlabs", from = "src"}
929
]
1030

31+
[project.urls]
32+
Repository = 'https://github.com/elevenlabs/elevenlabs-python'
33+
1134
[tool.poetry.dependencies]
1235
python = "^3.8"
1336
httpx = ">=0.21.2"
1437
pydantic = ">= 1.9.2"
38+
pydantic-core = "^2.18.2"
1539
requests = ">=2.20"
1640
typing_extensions = ">= 4.0.0"
1741
websockets = ">=11.0"
1842

1943
[tool.poetry.dev-dependencies]
20-
mypy = "1.9.0"
44+
mypy = "1.0.1"
2145
pytest = "^7.4.0"
2246
pytest-asyncio = "^0.23.5"
2347
python-dateutil = "^2.9.0"
48+
types-python-dateutil = "^2.9.0.20240316"
2449

2550
[tool.pytest.ini_options]
2651
testpaths = [ "tests" ]

0 commit comments

Comments
 (0)