forked from sandialabs/Fugu
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
62 lines (52 loc) · 1.29 KB
/
tox.ini
File metadata and controls
62 lines (52 loc) · 1.29 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tox]
requires = tox-conda
envlist = py39, py310, py311, py310-networkx{26,27,28}
isolated_build = True
package = editable
[testenv]
passenv = *
deps = .[whetstone,dev,examples,networkx24]
commands = pytest -v --maxfail=10
[testenv:py39]
conda-deps =
python=3.9
[testenv:py39-networkx32]
conda-deps =
python=3.10
deps =
networkx32: .[dev,examples]
[testenv:py39-tensorflow18-networkx32]
setenv =
EXCLUDE_DEPENDENCIES = six,furo,pytz,msgpack,greenlet,dateutil,future,decorator
conda-deps =
python=3.9
deps =
tensorflow18: .[whetstone,dev,examples]
[testenv:py310]
conda-deps =
python=3.10
[testenv:py310-networkx32]
conda-deps =
python=3.10
deps =
networkx32: .[dev,examples]
[testenv:py310-tensorflow18-networkx32]
conda-deps =
python=3.10
deps =
tensorflow18: .[whetstone,dev,examples]
[testenv:py311-tensorflow18-networkx32]
setenv =
EXCLUDE_DEPENDENCIES = six,furo,pytz,msgpack,greenlet,dateutil,future,decorator
conda-deps =
python=3.11
deps =
tensorflow18: .[whetstone,dev,examples]
[testenv:py311-tensorflow18-networkx34]
setenv =
INCLUDE_DEPENDENCIES = networkx==3.4.2
EXCLUDE_DEPENDENCIES = six,furo,pytz,msgpack,greenlet,dateutil,future,decorator,networkx
conda-deps =
python=3.11
deps =
tensorflow18: .[whetstone,dev,examples]