Skip to content

Commit

Permalink
Removed py37 from ci. tox to py310 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Jun 6, 2024
1 parent 404bf84 commit 127829b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-ver: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
python-ver: [3.8, 3.9, '3.10', 3.11, 3.12]

runs-on: ${{ matrix.os }}

Expand Down
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 = py310,lint
skipsdist = True
requires = setuptools >= 47.1

[travis]
python =
3.7: py37, docs, lint
3.10: py310, docs, lint

[testenv]
deps=-rrequirements-dev.txt
Expand All @@ -17,22 +17,22 @@ commands = coverage erase
coverage report -m

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

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

[testenv:installer]
basepython=python3.7
basepython=python3.10
commands=python -c "print('Installer not needed for this project.')"

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

0 comments on commit 127829b

Please sign in to comment.