Skip to content

Commit b98b963

Browse files
committed
build: specify version constraints on 3rd party deps
GitOrigin-RevId: 8c1bcca3858e6b66cf19afa863a8323339d89c8d
1 parent 1753960 commit b98b963

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77

88
setup(
99
name="assemblyai",
10-
version="0.7.1",
10+
version="0.11.0",
1111
description="AssemblyAI Python SDK",
1212
author="AssemblyAI",
1313
author_email="engineering.sdk@assemblyai.com",
1414
packages=find_packages(),
1515
install_requires=[
1616
"httpx>=0.19.0",
1717
"pydantic>=1.7.0",
18-
"typing-extensions",
19-
"websockets>=10.0",
18+
"typing-extensions>=3.7,<4.6",
19+
"websockets>=11.0",
2020
],
2121
extras_require={
22-
"extras": ["pyaudio"],
22+
"extras": ["pyaudio>=0.2.13"],
2323
},
2424
classifiers=[
2525
"Development Status :: 3 - Alpha",

tests/unit/test_transcript_group.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import httpx
44
from pytest_httpx import HTTPXMock
55

6-
import assemblyai as aai
76
import assemblyai as aai
87
from tests.unit import factories
98

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ deps =
1616
pydantic1.9: pydantic>=1.9.0,<1.10.0
1717
pydantic1.8: pydantic>=1.8.0,<1.9.0
1818
pydantic1.7: pydantic>=1.7.0,<1.8.0
19-
typing-extensions: typing-extensions>=3.7
19+
typing-extensions: typing-extensions>=3.7,<4.6
2020
# extra dependencies
21-
pyaudio: pyaudio
21+
pyaudiolatest: pyaudio
2222
pyaudio0.2: pyaudio>=0.2.13,<0.3.0
2323
# test dependencies
2424
pytest
2525
pytest-httpx
2626
pytest-xdist
27+
pytest-mock
2728
pytest-cov
2829
factory-boy
2930
allowlist_externals = pytest

0 commit comments

Comments
 (0)