Skip to content

Commit

Permalink
feat: add python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
edx-requirements-bot committed Feb 23, 2024
1 parent 8161c99 commit b39dd5c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [py, quality]
python-version:
- '3.8'
- '3.12'
toxenv: [py, quality, django42]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -50,7 +52,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
python-version:
- '3.8'
- '3.12'

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ norecursedirs = .* docs requirements site-packages

[testenv]
setenv = EDX_COOKIECUTTER_ROOTDIR = {toxinidir}
deps =
deps =
-r{toxinidir}/requirements/test.txt
-e lib
commands =
commands =
pytest {posargs}

[testenv:quality]
allowlist_externals =
allowlist_externals =
make
commands =
commands =
make quality

0 comments on commit b39dd5c

Please sign in to comment.