From 36cc66525d388b4fb4bd652a7186dc85f5746bbc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 1 Mar 2021 13:47:39 -0500 Subject: [PATCH] Drop txi2p for Python 3 entirely PEP-508 "URL lookups" are unsupported in packages released on PyPI --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4151545f7..d021b4512 100644 --- a/setup.py +++ b/setup.py @@ -151,9 +151,7 @@ tor_requires = [ i2p_requires = [ # txi2p has Python 3 support, but it's unreleased: https://github.com/str4d/txi2p/issues/10. - # URL lookups are in PEP-508 (via https://stackoverflow.com/a/54794506). - # Also see the comment in tor_requires. - "txi2p @ git+https://github.com/str4d/txi2p@0611b9a86172cb70d2f5e415a88eee9f230590b3#egg=txi2p", + "txi2p; python_version < '3.0'", ] if len(sys.argv) > 1 and sys.argv[1] == '--fakedependency':