Skip to content

Commit

Permalink
drop 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rambo committed Jan 24, 2025
1 parent c49a8d0 commit 6bd184c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_alpine
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_debian
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::

Expand Down

0 comments on commit 6bd184c

Please sign in to comment.