From f834a58325667a762f51e942fc4df694a0156247 Mon Sep 17 00:00:00 2001 From: Chris Gregory Date: Mon, 16 Sep 2024 13:05:58 -0700 Subject: [PATCH] Fix merge issue --- poetry.lock | 3 +-- pyproject.toml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/poetry.lock b/poetry.lock index cbc551a4..d4f88207 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3118,11 +3118,10 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", type = ["pytest-mypy"] [extras] -examples = ["jupyter"] legacy = ["pydub"] microphone = ["pydub", "simpleaudio", "sounddevice"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<4" -content-hash = "6c05f984cb5e08248fe440717430eba30a9ceff1f453583f6f7576cf65ca0979" +content-hash = "57f224588709bb4851d574103df63389191c95207cf5e1a2d2df4e19475a8a3f" diff --git a/pyproject.toml b/pyproject.toml index a96138bd..3d346f36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,14 +82,6 @@ testbook = "^0.4.2" types-aiofiles = "^24.1.0.20240626" types-python-dateutil = "^2.9.0.20240316" -[build-system] -build-backend = "poetry.core.masonry.api" -requires = ["poetry-core"] - -[tool.poetry.extras] -legacy = ["pydub"] -microphone = ["pydub", "simpleaudio", "sounddevice"] - [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] @@ -99,3 +91,11 @@ plugins = ["pydantic.mypy"] [tool.ruff] line-length = 120 + +[build-system] +build-backend = "poetry.core.masonry.api" +requires = ["poetry-core"] + +[tool.poetry.extras] +legacy = ["pydub"] +microphone = ["pydub", "simpleaudio", "sounddevice"]