From 62f93c1be869934677292bfaeb51856606eb6a51 Mon Sep 17 00:00:00 2001 From: Carl George Date: Apr 22 2019 20:22:40 +0000 Subject: Remove asyncio from install_requires Asyncio is part of the standard library since Python 3.4. Listing it in install_requires will make go2rpm depend on the asyncio PyPI module, which is only intended for Python 3.3. --- diff --git a/setup.py b/setup.py index 2b02b16..7707f9b 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,6 @@ ARGS = dict( install_requires=[ # CLI tool "aiohttp", - "asyncio", "gitpython", "jinja2" ],