Skip to content

Commit

Permalink
build: Remove Python 3.10 from the test matrix
Browse files Browse the repository at this point in the history
We need to test this XBlock on Python 3.8 (for Open edX releases prior
to Redwood), 3.11 (for Redwood), and 3.12 (which is the current latest
Python release).

There is no real good reason to test on 3.10, so we might as well drop
it.
  • Loading branch information
fghaas authored and Maari Tamm committed Aug 2, 2024
1 parent e57c16a commit 260f17d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
matrix:
python-version:
- '3.8'
- '3.10'
- '3.11'
pip-version:
- 22.0.4
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[tox]
envlist = py{38,310,311,312},pipdeptree{,-requirements},flake8,report
envlist = py{38,311,312},pipdeptree{,-requirements},flake8,report

[gh-actions]
python =
3.8: py38,pipdeptree{,-requirements},flake8
3.10: py310,pipdeptree{,-requirements},flake8
3.11: py311,pipdeptree{,-requirements},flake8
3.12: py312,pipdeptree{,-requirements},flake8

Expand Down

0 comments on commit 260f17d

Please sign in to comment.