diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-06 23:01:09 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-06 23:32:22 -0400 |
commit | 756a4bee4ad7c83a55e67c63614d8424094ddf06 (patch) | |
tree | aae3aa24ede23a7f894873ad3abc6186b26d317f /meson.build | |
parent | 6f80113b2f3da9047822eab18d46e01c1ed70ecc (diff) | |
download | pypaste-756a4bee4ad7c83a55e67c63614d8424094ddf06.tar.gz |
add aiohttp as dependency in meson.build
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index d00ba93..7551197 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('paste') python = import('python').find_installation( - modules: ['pygments', 'zstandard', 'bozo4'], + modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) sources = files('pypaste/__main__.py', 'pypaste/s3.py') |