diff --git a/setup.cfg b/setup.cfg index 31a9601..322bc29 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,9 +14,9 @@ classifiers = Topic :: Software Development :: Testing Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Operating System :: OS Independent License :: OSI Approved :: Apache Software License diff --git a/tox.ini b/tox.ini index c5bb073..95b2672 100644 --- a/tox.ini +++ b/tox.ini @@ -1,14 +1,14 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{38,39,310}-{linux,macos,windows} +envlist = py{39,310,311}-{linux,macos,windows} isolated_build=true [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 - + 3.11: py311 + [gh-actions:env] PLATFORM = ubuntu-latest: linux @@ -16,18 +16,18 @@ PLATFORM = windows-latest: windows [testenv] -platform = +platform = macos: darwin linux: linux windows: win32 -passenv = +passenv = CI GITHUB_ACTIONS - DISPLAY + DISPLAY XAUTHORITY NUMPY_EXPERIMENTAL_ARRAY_FUNCTION PYVISTA_OFF_SCREEN -deps = +deps = pytest # https://docs.pytest.org/en/latest/contents.html pytest-cov # https://pytest-cov.readthedocs.io/en/latest/ # you can remove these if you don't use them