@@ -31,7 +31,7 @@ basepython =
3131 pypy3: {env:TOXPYTHON:pypy3}
3232
3333setenv =
34- PYTHONPATH ={toxinidir}/ tests
34+ PYTHONPATH ={toxinidir}{/} tests
3535 PYTHONUNBUFFERED =yes
3636
3737passenv =
@@ -50,15 +50,15 @@ commands =
5050; Run this environment to check spelling within documentation.
5151[testenv:spell]
5252deps =
53- -r{toxinidir}/ docs/ requirements.txt
53+ -r{toxinidir}{/} docs{/} requirements.txt
5454 pyenchant
5555 sphinxcontrib-spelling
5656
5757setenv =
5858 SPELLCHECK =1
5959
6060commands =
61- sphinx-build -b spelling docs dist/ docs
61+ sphinx-build -b spelling docs dist{/} docs
6262
6363skip_install = true
6464
@@ -67,11 +67,11 @@ skip_install = true
6767; NOTE: Files under _autosummary may not be regererated, delete manually before execution!
6868[testenv:docs]
6969deps =
70- -r{toxinidir}/ docs/ requirements.txt
70+ -r{toxinidir}{/} docs{/} requirements.txt
7171
7272commands =
73- sphinx-build {posargs:-E} -b html docs dist/ docs
74- sphinx-build -b linkcheck docs dist/ docs
73+ sphinx-build {posargs:-E} -b html docs dist{/} docs
74+ sphinx-build -b linkcheck docs dist{/} docs
7575
7676
7777; Run this environment to check the code base consistency.
@@ -89,7 +89,7 @@ skip_install = true
8989
9090commands =
9191 python setup.py sdist
92- twine check dist/ bytesparse-*
92+ twine check dist{/} bytesparse-*
9393 check-manifest {toxinidir}
9494 flake8 src setup.py
9595 isort --verbose --check-only --diff src tests setup.py
0 commit comments