Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, build, flake8, black
envlist = py39, py310, py311, py312, py313, build, flake8, black
skipsdist = true
skip_missing_interpreters = true
isolated_build = true
Expand All @@ -26,8 +26,9 @@ deps =
pytest
wheel
setuptools
build
commands =
python setup.py -q sdist bdist_wheel
python -m build
pip install .
pytest --pyargs grid

Expand All @@ -42,7 +43,7 @@ deps =
flake8-colors
commands =
flake8 --version
flake8 src/grid setup.py
flake8 src/grid

[testenv:black]
basepython = python3
Expand Down Expand Up @@ -71,5 +72,8 @@ omit = */test*

[gh]
python =
3.7 = py37, build, flake8, black
3.8 = py38
3.9 = py39, build, flake8, black
3.10 = py310
3.11 = py311
3.12 = py312
3.13 = py313