Changeset 4793
- Timestamp:
- 06/21/08 02:03:50 (7 months ago)
- Files:
-
- branches/1.0/setup.py (modified) (2 diffs)
- branches/1.1/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/setup.py
r4767 r4793 23 23 "simplejson >= 1.3", 24 24 "TurboCheetah >= 1.0", 25 # TurboJson >= 1.2 use PEAK-Rules 25 26 "TurboJson >= 1.1.3, < 1.2", 26 27 "TurboKid >= 1.0.4", … … 35 36 36 37 sqlobject = [ 37 "SQLObject >= 0.7.1" 38 "SQLObject >= 0.7.1", 38 39 ] 39 40 40 sqlalchemy = [ 41 "SQLAlchemy >= 0.3.10", 41 if sys.version_info < (2, 4): 42 sqlalchemy = [ 43 # SQLAlchemy >= 0.5 does not support Py 2.3 44 "SQLAlchemy >= 0.3.10, < 0.5.0alpha", 45 else: 46 sqlalchemy = [ 47 "SQLAlchemy >= 0.3.10", 48 ] 49 50 testtools = [ 51 "nose >= 0.9.3", 42 52 ] 43 53 44 testtools = [ 45 "nose >= 0.9.3, <= 0.10.0a1", 46 ] 54 tgtesttools = testtools + sqlalchemy 47 55 48 tgtesttools = [49 "nose >= 0.9.3, <= 0.10.0a1",50 "SQLAlchemy >= 0.3.10",51 ]52 53 # python 2.5 compatible list54 56 if sys.version_info < (2, 5): 55 57 tgtesttools.extend([ 56 "pysqlite" 58 # Py < 2.5 does not include SQLite 59 "pysqlite", 57 60 ]) 58 else:59 # currently there are no extra requires for Python >= 2.560 # install_requires.extend([])61 pass62 61 63 62 branches/1.1/setup.py
r4791 r4793 23 23 "simplejson >= 1.9.1", 24 24 "TurboCheetah >= 1.0", 25 # TurboJson < 1.2 use RuleDispatch 25 26 "TurboJson >= 1.2", 26 27 "tgMochiKit >= 0.1alpha", … … 32 33 ] 33 34 34 35 if sys.version_info < (2, 5): 36 sqlobject = ["SQLObject >= 0.7.1, < 0.10.0"] 37 else: 38 sqlobject = ["SQLObject >= 0.8, <= 0.10.0"] 35 sqlobject = [ 36 "SQLObject >= 0.7.1", 37 ] 39 38 40 39 exp = ["TGFastData"] … … 48 47 49 48 testtools = [ 50 "nose >= 0.9.3 , <= 0.10.0a1",49 "nose >= 0.9.3", 51 50 ] 52 51 53 tgtesttools = [ 54 "nose >= 0.9.3, <= 0.10.0a1", 55 ] 52 tgtesttools = testtools 56 53 57 # python 2.5 compatible list58 54 if sys.version_info < (2, 5): 59 55 tgtesttools.extend([ 60 "pysqlite" 56 # Py < 2.5 does not include SQLite 57 "pysqlite", 61 58 ]) 62 else:63 # currently there are no extra requires for Python >= 2.564 ##install_requires.extend([])65 pass66 59 67 60