Files
omnibot22/Pipfile
Alek Ratzloff 3893b37401 Add async-timeout to dependencies
For some reason, async-timeout needs to be specifically marked as >=4
when using the aiohttp package.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2022-05-23 20:54:54 -07:00

22 lines
334 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
async-irc = "*"
toml = {version="*", markers="python_version < '3.11'"}
types-toml = "*"
"aiohttp[speedups]" = "*"
async-timeout = ">=4"
[dev-packages]
mypy = "*"
black = "*"
[requires]
python_version = "3.10"
[pipenv]
allow_prereleases = true