Opened 11 years ago

Closed 10 years ago

#215 closed defect (fixed)

change "install_requires" in setup.py to reflect requirement of 2.5.0 of Twisted

Reported by: Zooko Owned by:
Priority: major Milestone: 0.6.5
Component: packaging Version: 0.6.4
Keywords: Cc:

Description

Also remove old comment about pyOpenSSL-vs-Twisted bug.

zooko@spark ~/playground/foolscap $ git diff
diff --git a/setup.py b/setup.py
index 070f163..1206e79 100755
--- a/setup.py
+++ b/setup.py
@@ -71,9 +71,7 @@ if have_setuptools:
             "flappserver = foolscap.appserver.cli:run_flappserver",
             "flappclient = foolscap.appserver.client:run_flappclient",
             ] }
-    setup_args['install_requires'] = ['twisted >= 2.4.0']
-    # note that pyOpenSSL-0.7 and recent Twisted causes unit test failures,
-    # see bug #62
+    setup_args['install_requires'] = ['twisted >= 2.5.0']
 
 if __name__ == '__main__':
     setup(**setup_args)

Change History (2)

comment:2 Changed 10 years ago by Brian Warner

Component: unknownpackaging
Resolution: fixed
Status: newclosed

looks good.. I landed that branch.

Note: See TracTickets for help on using tickets.