diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 47645ac..0a5ce34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v3 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index f190931..0000000 --- a/tox.ini +++ /dev/null @@ -1,29 +0,0 @@ -[pytest] -# Runstatus-related tests disabled until api.runstatus.com supports IAM API keys -addopts = -x -s -vvv -k 'not runstatus' -filterwarnings = - once::Warning -xfail_strict = True -testpaths = tests - -[tox] -envlist = py38,py39,py310,py311,py312 - -[gh-actions] -python = - 3.8: py38 - 3.9: py39 - 3.10: py310 - 3.11: py311 - 3.12: py312 - -[testenv] -extras = dev -deps = - pytest - requests-mock - requests-exoscale-auth -commands = python -m pytest {posargs} - -[flake8] -extend-ignore=I100,I201,I101,E501