Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"cliVersion": "3.91.2",
"cliVersion": "4.62.5",
"generatorName": "fernapi/fern-python-sdk",
"generatorVersion": "4.61.0",
"generatorVersion": "5.3.6",
"generatorConfig": {
"should_generate_websocket_clients": true,
"pyproject_python_version": ">=3.9,<4",
Expand Down Expand Up @@ -64,5 +64,6 @@
}
]
},
"sdkVersion": "0.13.10"
"originGitCommit": "a07a0deaa640e8b286f9c8e4e47426b37a083a67",
"sdkVersion": "0.13.11"
}
1,404 changes: 1,108 additions & 296 deletions poetry.lock

Large diffs are not rendered by default.

16 changes: 11 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "hume"
version = "0.13.10"
version = "0.13.11"
description = "A Python SDK for Hume AI"
readme = "README.md"
authors = []
Expand Down Expand Up @@ -63,20 +63,22 @@ Repository = 'https://github.com/HumeAI/hume-python-sdk'
[tool.poetry.dependencies]
python = ">=3.9,<4"
aiofiles = "^24.1.0"
aiohttp = { version = ">=3.10.0,<4", optional = true}
eval-type-backport = "^0.2.0"
exceptiongroup = "^1.3.0"
httpx = ">=0.21.2"
httpx-aiohttp = { version = "0.1.8", optional = true}
jupyter = { version = "^1.0.0", optional = true}
pydantic = ">= 1.9.2"
pydantic-core = ">=2.18.2"
pydantic-core = ">=2.18.2,<2.44.0"
sounddevice = { version = "^0.4.6", optional = true}
typing_extensions = ">= 4.0.0"
websockets = ">=12.0"
websockets = "^13.1"

[tool.poetry.group.dev.dependencies]
mypy = "==1.13.0"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
pytest = "^8.2.0"
pytest-asyncio = "^1.0.0"
pytest-xdist = "^3.6.1"
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
Expand All @@ -95,6 +97,9 @@ types-aiofiles = "^24.1.0.20240626"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
asyncio_mode = "auto"
markers = [
"aiohttp: tests that require httpx_aiohttp to be installed",
]

[tool.mypy]
plugins = ["pydantic.mypy"]
Expand Down Expand Up @@ -130,3 +135,4 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
examples=["jupyter"]
microphone=["sounddevice"]
aiohttp=["aiohttp", "httpx-aiohttp"]
Loading
Loading