forked from Crunch-io/scrunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
50 lines (45 loc) · 1.08 KB
/
tox.ini
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
[tox]
envlist = py27,py36,py37,py38,py39,py310,py311,{py27,py36,py37,py38,py39,py311}-pandas
minversion = 2.4
skip_missing_interpreters = true
[gh-actions]
python =
2.7: py27,py27-pandas
3.6: py36,py36-pandas
3.7: py37,py37-pandas
3.8: py38,py38-pandas
3.9: py39,py39-pandas
3.11: py311,py311-pandas
[testenv]
deps =
setuptools>=31.0.1
pandas: pandas
# workaround for yaml/pyyaml#126
# git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7"
git+https://github.com/Crunch-io/pycrunch#pycrunch
commands =
py.test {posargs}
python setup.py checkdocs
usedevelop = True
extras =
testing
[testenv:pandas]
deps =
setuptools>=31.0.1
# workaround for yaml/pyyaml#126
# git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7"
git+https://github.com/Crunch-io/pycrunch#pycrunch
commands =
py.test {posargs}
python setup.py checkdocs
usedevelop = True
extras =
testing
pandas
[testenv:build-docs]
extras =
docs
testing
changedir = docs
commands =
python -m sphinx . {toxinidir}/build/html