From 4305777f8863678ddbbae8d5052a69808d84e6a8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 21 Oct 2020 10:03:06 -0400 Subject: [PATCH] Nevow is no longer a dependency --- setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 4151545f7..874cc1258 100644 --- a/setup.py +++ b/setup.py @@ -38,8 +38,7 @@ install_requires = [ "zfec >= 1.1.0", # zope.interface >= 3.6.0 is required for Twisted >= 12.1.0. - # zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435). - "zope.interface >= 3.6.0, != 3.6.3, != 3.6.4", + "zope.interface >= 3.6.0", # * foolscap < 0.5.1 had a performance bug which spent O(N**2) CPU for # transferring large mutable files of size N. @@ -70,7 +69,6 @@ install_requires = [ # rekeying bug # * The FTP frontend depends on Twisted >= 11.1.0 for # filepath.Permissions - # * Nevow 0.11.1 depends on Twisted >= 13.0.0. # * The SFTP frontend and manhole depend on the conch extra. However, we # can't explicitly declare that without an undesirable dependency on gmpy, # as explained in ticket #2740. @@ -102,9 +100,6 @@ install_requires = [ # an sftp extra in Tahoe-LAFS, there is no point in having one. "Twisted[tls,conch] >= 18.4.0", - # We need Nevow >= 0.11.1 which can be installed using pip. - "Nevow >= 0.11.1", - "PyYAML >= 3.11", "six >= 1.10.0",