-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuildout.cfg
More file actions
44 lines (39 loc) · 988 Bytes
/
buildout.cfg
File metadata and controls
44 lines (39 loc) · 988 Bytes
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
[buildout]
index = https://pypi.org/simple/
develop = .
parts =
test
backup
show-picked-versions = true
versions = versions
# network speedup
socket-timeout = 3
[backup]
# Might as well simply test creating a backup script here.
recipe = collective.recipe.backup
backup_blobs = false
[test]
recipe = zc.recipe.testrunner
eggs = collective.recipe.backup[test]
defaults = ['--auto-color', '--auto-progress', '--ndiff']
[versions]
# unpin these, so we use whatever is available without restarting buildout:
setuptools =
zc.buildout =
# other:
zc.recipe.egg = 4.0.0
zc.recipe.testrunner = 4.0
zope.exceptions = 6.0
zope.interface = 8.2
zope.testing = 6.1
zope.testrunner = 8.2
[versions:python_version < '3.12']
# Here let's test zc.buildout 4 and then we need some older package versions
# with pkg_resources namespace versions
zc.buildout = <5
zc.recipe.egg = 3.0.0
zc.recipe.testrunner = 3.1
zope.exceptions = 5.2
zope.interface = 7.2
zope.testing = 5.1
zope.testrunner = 7.2