]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/_auto_deps.py
suppress warning emitted by newer zope.interface with Nevow 0.10
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / _auto_deps.py
1 # Note: please minimize imports in this file. In particular, do not import
2 # any module from Tahoe-LAFS or its dependencies, and do not import any
3 # modules at all at global level. That includes setuptools and pkg_resources.
4 # It is ok to import modules from the Python Standard Library if they are
5 # always available, or the import is protected by try...except ImportError.
6
7 install_requires = [
8     # we require newer versions of setuptools (actually
9     # zetuptoolz) to build, but can handle older versions to run
10     "setuptools >= 0.6c6",
11
12     "zfec >= 1.1.0",
13
14     # Feisty has simplejson 1.4
15     "simplejson >= 1.4",
16
17     # zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435).
18     "zope.interface <= 3.6.2, >= 3.6.5",
19
20     # On Windows we need at least Twisted 9.0 to avoid an indirect dependency on pywin32.
21     # On Linux we need at least Twisted 10.1.0 for inotify support used by the drop-upload
22     # frontend.
23     # We also need Twisted 10.1 for the FTP frontend in order for Twisted's FTP server to
24     # support asynchronous close.
25     "Twisted >= 10.1.0",
26
27     # foolscap < 0.5.1 had a performance bug which spent
28     # O(N**2) CPU for transferring large mutable files
29     # of size N.
30     # foolscap < 0.6 is incompatible with Twisted 10.2.0.
31     # foolscap 0.6.1 quiets a DeprecationWarning.
32     # pyOpenSSL is required by foolscap for it (foolscap) to provide secure
33     # connections. Foolscap doesn't reliably declare this dependency in a
34     # machine-readable way, so we need to declare a dependency on pyOpenSSL
35     # ourselves. Tahoe-LAFS doesn't *really* depend directly on pyOpenSSL,
36     # so if something changes in the relationship between foolscap and
37     # pyOpenSSL, such as foolscap requiring a specific version of pyOpenSSL,
38     # or foolscap switching from pyOpenSSL to a different crypto library, we
39     # need to update this declaration here.
40     "foolscap >= 0.6.1",
41     "pyOpenSSL",
42
43     "Nevow >= 0.6.0",
44
45     # Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
46     # pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
47     "pycrypto == 2.0.1, == 2.1.0, >= 2.3",
48     "pyasn1 >= 0.0.8a",
49
50     # http://www.voidspace.org.uk/python/mock/
51     "mock",
52
53     # Will be needed to test web apps, but not yet. See #1001.
54     #"windmill >= 1.3",
55 ]
56
57 # Includes some indirect dependencies, but does not include allmydata.
58 # These are in the order they should be listed by --version, etc.
59 package_imports = [
60     # package name      module name
61     ('foolscap',        'foolscap'),
62     ('pycryptopp',      'pycryptopp'),
63     ('zfec',            'zfec'),
64     ('Twisted',         'twisted'),
65     ('Nevow',           'nevow'),
66     ('zope.interface',  'zope.interface'),
67     ('python',          None),
68     ('platform',        None),
69     ('pyOpenSSL',       'OpenSSL'),
70     ('simplejson',      'simplejson'),
71     ('pycrypto',        'Crypto'),
72     ('pyasn1',          'pyasn1'),
73     ('mock',            'mock'),
74 ]
75
76 def require_more():
77     import platform, sys
78
79     if platform.machine().lower() in ['i386', 'x86', 'i686', 'x86_64', 'amd64', '']:
80         # pycryptopp v0.5.20 fixes bugs in SHA-256 and AES on x86 or amd64
81         # (from Crypto++ revisions 470, 471, 480, 492).  The '' is there
82         # in case platform.machine is broken and this is actually an x86
83         # or amd64 machine.
84         install_requires.append("pycryptopp >= 0.5.20")
85     else:
86         # pycryptopp v0.5.13 had a new bundled version of Crypto++
87         # (v5.6.0) and a new bundled version of setuptools (although that
88         # shouldn't make any difference to users of pycryptopp).
89         install_requires.append("pycryptopp >= 0.5.14")
90
91     # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
92     # distribution for Python 2.4.
93     try:
94         import sqlite3
95         sqlite3 # hush pyflakes
96         package_imports.append(('sqlite3', 'sqlite3'))
97     except ImportError:
98         # pysqlite v2.0.5 was shipped in Ubuntu 6.06 LTS "dapper" and Nexenta NCP 1.
99         install_requires.append("pysqlite >= 2.0.5")
100         package_imports.append(('pysqlite', 'pysqlite2.dbapi2'))
101
102     # Don't try to get the version number of setuptools in frozen builds, because
103     # that triggers 'site' processing that causes failures. Note that frozen
104     # builds still (unfortunately) import pkg_resources in .tac files, so the
105     # entry for setuptools in install_requires above isn't conditional.
106     if not hasattr(sys, 'frozen'):
107         package_imports.append(('setuptools', 'setuptools'))
108
109 require_more()
110
111 deprecation_messages = [
112     "the sha module is deprecated; use the hashlib module instead",
113     "object.__new__\(\) takes no parameters",
114     "The popen2 module is deprecated.  Use the subprocess module.",
115     "the md5 module is deprecated; use hashlib instead",
116     "twisted.web.error.NoResource is deprecated since Twisted 9.0.  See twisted.web.resource.NoResource.",
117     "the sets module is deprecated",
118 ]
119
120 deprecation_imports = [
121     'nevow',
122     'twisted.persisted.sob',
123     'twisted.python.filepath',
124     'Crypto.Hash.SHA',
125 ]
126
127 user_warning_messages = [
128     "Hashing uninitialized InterfaceClass instance",
129 ]