Skip to content

Commit

Permalink
Stop testing on Python 3.8
Browse files Browse the repository at this point in the history
In production we are running on Python 3.7 and 3.9 (soon also to be
running on 3.11) so speed up tests by not running them on Python 3.8.
  • Loading branch information
hmpf committed Mar 1, 2024
1 parent 127ce87 commit 9c65722
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.9]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion tests/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ RUN add-apt-repository ppa:deadsnakes/ppa && \
apt-get -y install --no-install-recommends \
curl git build-essential \
python3.7-dbg python3.7-dev python3.7-distutils \
python3.8-dbg python3.8-dev \
python3.9-dbg python3.9-dev \
python3-pip

Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# When changing the python or django version also change it in the tox example
# of the documentation in hacking.rst
[tox]
envlist = {unit,integration,functional}-py{37,38,39}-django{32}, javascript, docs
envlist = {unit,integration,functional}-py{37,39}-django{32}, javascript, docs
skipsdist = True
basepython = python3.7

Expand All @@ -18,7 +18,6 @@ markers =
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39

[testenv]
Expand Down

0 comments on commit 9c65722

Please sign in to comment.