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>
22 lines
334 B
TOML
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
|