~gary/zc.buildout/python-support-3-options

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[buildout]
extends = buildout.cfg
parts += test24 test25 test26 oltest24 oltest25 oltest26

# The [test2X] sections below are to make testing with various Python versions
# easier.  You'll need entries in your default.cfg that point to the location
# that your various versions of Python are installed.  Like so:
#
# [python2.4]
# executable = /usr/local/bin/python2.4
#
# And then run "bin/buildout install test24 test25 test26" to build the
# version-specific test scripts.  Once that's done you ran run "bin/test24"
# (etc.).

[test24]
python = python2.4
recipe = ${test:recipe}
eggs = ${test:eggs}

[test25]
python = python2.5
recipe = ${test:recipe}
eggs = ${test:eggs}

[test26]
python = python2.6
recipe = ${test:recipe}
eggs = ${test:eggs}

[oltest24]
python = python2.4
recipe = ${oltest:recipe}
eggs = ${oltest:eggs}
defaults = ${oltest:defaults}

[oltest25]
python = python2.5
recipe = ${oltest:recipe}
eggs = ${oltest:eggs}
defaults = ${oltest:defaults}

[oltest26]
python = python2.6
recipe = ${oltest:recipe}
eggs = ${oltest:eggs}
defaults = ${oltest:defaults}