From 6bd184c7c87b7ffd125ca484d483d79208dbd434 Mon Sep 17 00:00:00 2001 From: Eero af Heurlin Date: Sat, 25 Jan 2025 00:44:03 +0200 Subject: [PATCH] drop 3.8 --- .github/workflows/build.yml | 2 +- Dockerfile_alpine | 2 +- Dockerfile_debian | 2 +- README.rst | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4952b98..1c2e764 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/Dockerfile_alpine b/Dockerfile_alpine index 6d8950b..039cbbc 100644 --- a/Dockerfile_alpine +++ b/Dockerfile_alpine @@ -3,7 +3,7 @@ # Tox testsuite for multiple python version # ############################################# FROM advian/tox-base:alpine-3.19 as tox -ARG PYTHON_VERSIONS="3.11 3.10 3.9 3.8" +ARG PYTHON_VERSIONS="3.11 3.10 3.9" ARG POETRY_VERSION="2.0.1" RUN export RESOLVED_VERSIONS=`pyenv_resolve $PYTHON_VERSIONS` \ && echo RESOLVED_VERSIONS=$RESOLVED_VERSIONS \ diff --git a/Dockerfile_debian b/Dockerfile_debian index be937e5..9279452 100644 --- a/Dockerfile_debian +++ b/Dockerfile_debian @@ -3,7 +3,7 @@ # Tox testsuite for multiple python version # ############################################# FROM advian/tox-base:debian-bookworm as tox -ARG PYTHON_VERSIONS="3.11 3.10 3.9 3.8" +ARG PYTHON_VERSIONS="3.11 3.10 3.9" ARG POETRY_VERSION="2.0.1" RUN export RESOLVED_VERSIONS=`pyenv_resolve $PYTHON_VERSIONS` \ && echo RESOLVED_VERSIONS=$RESOLVED_VERSIONS \ diff --git a/README.rst b/README.rst index ad4569c..2d2eaa8 100644 --- a/README.rst +++ b/README.rst @@ -86,9 +86,9 @@ Development TLDR: -- Create and activate a Python 3.8 virtualenv (assuming virtualenvwrapper):: +- Create and activate a Python 3.11 virtualenv (assuming virtualenvwrapper):: - mkvirtualenv -p `which python3.8` my_virtualenv + mkvirtualenv -p `which python3.11` my_virtualenv - change to a branch::