File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 77
88setup (
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" ,
Original file line number Diff line number Diff line change 33import httpx
44from pytest_httpx import HTTPXMock
55
6- import assemblyai as aai
76import assemblyai as aai
87from tests .unit import factories
98
Original file line number Diff line number Diff 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
2930allowlist_externals = pytest
You can’t perform that action at this time.
0 commit comments