Updated libraries

This commit is contained in:
Yuta Hayashibe 2022-09-25 18:17:55 +09:00
parent c88ac34920
commit 11a895606a
2 changed files with 13 additions and 13 deletions

14
poetry.lock generated
View file

@ -22,7 +22,7 @@ uvloop = ["uvloop (>=0.15.2)"]
[[package]] [[package]]
name = "certifi" name = "certifi"
version = "2022.9.14" version = "2022.9.24"
description = "Python package for providing Mozilla's CA Bundle." description = "Python package for providing Mozilla's CA Bundle."
category = "main" category = "main"
optional = false optional = false
@ -507,13 +507,13 @@ dev = ["pytest"]
[package.source] [package.source]
type = "git" type = "git"
url = "https://github.com/openai/whisper.git" url = "https://github.com/openai/whisper.git"
reference = '8cf36f3508c9acd341a45eb2364239a3d81458b9' reference = '2d3032de014c514d5c029baccb898b5342463674'
resolved_reference = "8cf36f3508c9acd341a45eb2364239a3d81458b9" resolved_reference = "2d3032de014c514d5c029baccb898b5342463674"
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = ">=3.8,<4.0" python-versions = ">=3.8,<3.11"
content-hash = "a743450981e24e9b1a5cb5f3ffec7e346f54b87176a63d8c0dcc5cd0befdff62" content-hash = "5c03bdf5e1e73d2c8bc3d29440567d910e2f32fccf659bd983839f7a0c02ebb1"
[metadata.files] [metadata.files]
black = [ black = [
@ -542,8 +542,8 @@ black = [
{file = "black-22.8.0.tar.gz", hash = "sha256:792f7eb540ba9a17e8656538701d3eb1afcb134e3b45b71f20b25c77a8db7e6e"}, {file = "black-22.8.0.tar.gz", hash = "sha256:792f7eb540ba9a17e8656538701d3eb1afcb134e3b45b71f20b25c77a8db7e6e"},
] ]
certifi = [ certifi = [
{file = "certifi-2022.9.14-py3-none-any.whl", hash = "sha256:e232343de1ab72c2aa521b625c80f699e356830fd0e2c620b465b304b17b0516"}, {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"},
{file = "certifi-2022.9.14.tar.gz", hash = "sha256:36973885b9542e6bd01dea287b2b4b3b21236307c56324fcc3f1160f2d655ed5"}, {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"},
] ]
cffi = [ cffi = [
{file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"},

View file

@ -7,18 +7,18 @@ readme = "README.md"
packages = [{include = "whisper_streaming"}] packages = [{include = "whisper_streaming"}]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8,<4.0" python = ">=3.8,<3.11"
whisper = {git = "https://github.com/openai/whisper.git", rev = '8cf36f3508c9acd341a45eb2364239a3d81458b9'} whisper = {git = "https://github.com/openai/whisper.git", rev = '2d3032de014c514d5c029baccb898b5342463674'}
sounddevice = "^0.4.5" sounddevice = "^0.4.5"
pydantic = "^1.10.2" pydantic = "^1.10.2"
websockets = "^10.3" websockets = "^10.3"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
black = "^22.8.0" black = ">=22.8.0"
isort = "^5.10.1" isort = ">=5.10.1"
flake8 = "^5.0.4" flake8 = ">=5.0.4"
pydocstyle = "^6.1.1" pydocstyle = ">=6.1.1"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]