Skip to content

Commit 33d50a9

Browse files
committed
build!: stop testing with 3.8
1 parent 98bd58a commit 33d50a9

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ['3.8', '3.11', '3.12']
17+
python-version: ['3.11', '3.12']
1818
toxenv: [quality, django42]
1919

2020
steps:
@@ -34,7 +34,7 @@ jobs:
3434
run: tox -e ${{ matrix.toxenv }}
3535

3636
- name: Run Coverage
37-
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42'
37+
if: matrix.python-version == '3.11' && matrix.toxenv == 'django42'
3838
uses: codecov/codecov-action@v4
3939
with:
4040
flags: unittests

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: setup python
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: 3.8
18+
python-version: 3.11
1919

2020
- name: Install pip
2121
run: pip install wheel setuptools

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,311,312}-django{42}, quality, docs
2+
envlist = py{311,312}-django{42}, quality, docs
33

44
[pytest]
55
DJANGO_SETTINGS_MODULE = xblock.test.settings
@@ -22,7 +22,7 @@ allowlist_externals =
2222

2323
[testenv:docs]
2424
basepython =
25-
python3.8
25+
python3.11
2626
changedir =
2727
{toxinidir}/docs
2828
deps =

0 commit comments

Comments
 (0)