From c21d6bf502f0de345cba0b1f0cc04fb3a31f2eb1 Mon Sep 17 00:00:00 2001 From: Gael Pasgrimaud Date: Fri, 5 Jul 2024 13:46:31 +0200 Subject: [PATCH] drop support for py < 39 --- .github/workflows/ci-tests.yml | 10 +++++----- tox.ini | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 4e5ec07..8975d40 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -14,10 +14,10 @@ jobs: strategy: matrix: py: - - "3.7" - - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" os: - "ubuntu-latest" - "macos-latest" @@ -54,10 +54,10 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.12 architecture: x64 - run: pip install tox - - run: tox -e py39,coverage + - run: tox -e py312,coverage docs: runs-on: ubuntu-latest name: Build the documentation @@ -66,7 +66,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.12 architecture: x64 - run: pip install tox - run: tox -e docs diff --git a/tox.ini b/tox.ini index 1ef29dc..3aa74b3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] skip_missing_interpreters = true envlist = - py37,py38,py39,py310 + py39,py310,py311,py312 coverage, docs @@ -31,7 +31,7 @@ commands = coverage report --show-missing --fail-under=96 [testenv:docs] -basepython = python3.9 +basepython = python3.12 allowlist_externals = make commands =