Skip to content

Commit 8110b5c

Browse files
(chore): misc improvements such as ruff formatting, pydantic warnings and tests (elevenlabs#359)
1 parent 16524b1 commit 8110b5c

File tree

102 files changed

+3000
-1169
lines changed

Some content is hidden

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

102 files changed

+3000
-1169
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist/
22
.mypy_cache/
33
__pycache__/
44
poetry.toml
5+
.ruff_cache/

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "elevenlabs"
3-
version = "1.8.0"
3+
version = "1.8.1"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -46,6 +46,7 @@ pytest = "^7.4.0"
4646
pytest-asyncio = "^0.23.5"
4747
python-dateutil = "^2.9.0"
4848
types-python-dateutil = "^2.9.0.20240316"
49+
ruff = "^0.5.6"
4950

5051
[tool.pytest.ini_options]
5152
testpaths = [ "tests" ]
@@ -54,6 +55,9 @@ asyncio_mode = "auto"
5455
[tool.mypy]
5556
plugins = ["pydantic.mypy"]
5657

58+
[tool.ruff]
59+
line-length = 120
60+
5761

5862
[build-system]
5963
requires = ["poetry-core"]

0 commit comments

Comments
 (0)