Skip to content

Commit

Permalink
Issue #26 let's use py38
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed May 3, 2023
1 parent d40195e commit c62f7df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py37,lint
envlist = py38,lint
skipsdist = True
requires = setuptools >= 47.1

[travis]
python =
3.7: py37, docs, lint
3.8: py38, docs, lint

[testenv]
passenv = *
Expand All @@ -18,22 +18,22 @@ commands = coverage erase
coverage report -m

[testenv:lint]
basepython=python3.7
basepython=python3.8
deps=pylint
{[testenv]deps}
commands=pylint --rcfile=tests/pylintrc snappysonic tests

[testenv:docs]
basepython=python3.7
basepython=python3.8
changedir = doc
commands = sphinx-build -M html . build

[testenv:installer]
basepython=python3.7
basepython=python3.8
commands=pyinstaller --onefile snappysonic.py --noconfirm --windowed

[testenv:pip3]
basepython=python3.7
basepython=python3.8
changedir=pip_test
skip_install=True
commands = pip install {posargs}
Expand Down

0 comments on commit c62f7df

Please sign in to comment.