An LTS port of the Python builtin module audioop
which was deprecated since version 3.11 and removed in 3.13.
This project exists to maintain this module for future versions.
Warning
This module only functions at Python versions of 3.13 or greater due to being removed in this version.
As such, you can conditionally add this project to your dependencies:
audioop-lts; python_version>='3.13'
[tool.poetry.dependencies]
audioop-lts = { version = "...", python = "^3.13" }
Relevant documentation is here, or alternatively use markers
[project]
dependencies = [
"audioop-lts; python_version >= '3.13'",
]
[packages]
audioop-lts = { version = "...", markers = "python_version >= 3.13" }
[project]
dependencies = [
"audioop-lts; python_version >= '3.13'",
# or
"audioop-lts==...; python_version >= '3.13'"
]