Merge pull request #28 from johndoe6345789/copilot/install-pylint-dependencies

Add asgiref dependency for ASGI compatibility layer
This commit is contained in:
2026-01-13 19:47:13 +00:00
committed by GitHub
2 changed files with 20 additions and 1 deletions

20
poetry.lock generated
View File

@@ -203,6 +203,24 @@ typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
[package.extras]
trio = ["trio (>=0.31.0) ; python_version < \"3.10\"", "trio (>=0.32.0) ; python_version >= \"3.10\""]
[[package]]
name = "asgiref"
version = "3.11.0"
description = "ASGI specs, helper code, and adapters"
optional = false
python-versions = ">=3.9"
groups = ["main"]
files = [
{file = "asgiref-3.11.0-py3-none-any.whl", hash = "sha256:1db9021efadb0d9512ce8ffaf72fcef601c7b73a8807a1bb2ef143dc6b14846d"},
{file = "asgiref-3.11.0.tar.gz", hash = "sha256:13acff32519542a1736223fb79a715acdebe24286d98e8b164a73085f40da2c4"},
]
[package.dependencies]
typing_extensions = {version = ">=4", markers = "python_version < \"3.11\""}
[package.extras]
tests = ["mypy (>=1.14.0)", "pytest", "pytest-asyncio"]
[[package]]
name = "async-timeout"
version = "5.0.1"
@@ -2637,4 +2655,4 @@ propcache = ">=0.2.1"
[metadata]
lock-version = "2.1"
python-versions = "^3.10"
content-hash = "8429ddb4b66ee394f4f5e64476836ff989878ac1481adf89bd2d9bf0998dc370"
content-hash = "51e693c8165f06e26fcc72ac449e0f120cd8e559e9e8260ba37e91df70361e79"

View File

@@ -18,6 +18,7 @@ flask = "^2.3.3"
slack-sdk = "^3.39.0"
discord-py = "^2.6.4"
jsonschema = "^4.10.3"
asgiref = "^3.7.0"
[build-system]
requires = ["poetry-core"]