Skip to content

Commit

Permalink
feat: add python312 support
Browse files Browse the repository at this point in the history
  • Loading branch information
edx-requirements-bot committed Feb 23, 2024
1 parent 74afde6 commit bc29e8b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 41 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
django-version: ["pinned", "4.2"]
python-version:
- "3.8"
- '3.12'
django-version:
- "4.2"
- django42
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
59 changes: 20 additions & 39 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,92 +1,73 @@
[tox]
envlist = py38-django{42}, quality, docs, pii_check
envlist = py{38, 312}-django{42}, quality, docs, pii_check
skipsdist = true

[doc8]
; D001 = Line too long
ignore=D001
ignore = D001

[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
; E266 = too many leading '#' for block comment
; W504 = line break after binary operator
ignore = E266,W504

[pydocstyle]
; D101 = Missing docstring in public class
; D200 = One-line docstring should fit on one line with quotes
; D203 = 1 blank line required before class docstring
; D212 = Multi-line docstring summary should start at the first line
; D215 = Section underline is over-indented (numpy style)
; D404 = First word of the docstring should not be This (numpy style)
; D405 = Section name should be properly capitalized (numpy style)
; D406 = Section name should end with a newline (numpy style)
; D407 = Missing dashed underline after section (numpy style)
; D408 = Section underline should be in the line following the section’s name (numpy style)
; D409 = Section underline should match the length of its name (numpy style)
; D410 = Missing blank line after section (numpy style)
; D411 = Missing blank line before section (numpy style)
; D412 = No blank lines allowed between a section header and its content (numpy style)
; D413 = Missing blank line after last section (numpy style)
; D414 = Section has no content (numpy style)
ignore = D101,D200,D203,D212,D215,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414
match-dir = (?!migrations)

[pytest]
DJANGO_SETTINGS_MODULE = enterprise_access.settings.test
django_settings_module = enterprise_access.settings.test
addopts = --cov enterprise_access --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements site-packages

[testenv]
deps =
django42: Django>=4.2,<5.0
deps =
django42: Django>=4.2,<4.3
-r{toxinidir}/requirements/test.txt
commands =
commands =
pytest {posargs}

[testenv:docs]
setenv =
setenv =
DJANGO_SETTINGS_MODULE = enterprise_access.settings.test
PYTHONPATH = {toxinidir}
# Adding the option here instead of as a default in the docs Makefile because that Makefile is generated by shpinx.
SPHINXOPTS = -W
allowlist_externals =
allowlist_externals =
make
rm
deps =
deps =
-r{toxinidir}/requirements/doc.txt
commands =
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/enterprise_access.rst
rm -f docs/modules.rst
make -e -C docs clean
make -e -C docs html

[testenv:translations]
allowlist_externals =
allowlist_externals =
make
deps =
deps =
-r{toxinidir}/requirements/dev.txt
commands =
commands =
make validate_translations

[testenv:quality]
allowlist_externals =
allowlist_externals =
make
deps =
deps =
-r{toxinidir}/requirements/quality.txt
commands =
commands =
pylint enterprise_access test_utils manage.py
pycodestyle enterprise_access manage.py
pydocstyle enterprise_access manage.py
isort --check-only --diff --recursive test_utils enterprise_access manage.py
make selfcheck

[testenv:pii_check]
setenv =
setenv =
DJANGO_SETTINGS_MODULE = enterprise_access.settings.test
deps =
deps =
-r{toxinidir}/requirements/test.txt
commands =
commands =
code_annotations django_find_annotations --config_file .pii_annotations.yml --lint --report --coverage

0 comments on commit bc29e8b

Please sign in to comment.