-
Notifications
You must be signed in to change notification settings - Fork 24
chore: drop Django 4.2 support #377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -150,7 +150,6 @@ def is_requirement(line): | |
| classifiers=[ | ||
| 'Development Status :: 3 - Alpha', | ||
| 'Framework :: Django', | ||
| 'Framework :: Django :: 4.2', | ||
| 'Framework :: Django :: 5.2', | ||
| 'Intended Audience :: Developers', | ||
|
Comment on lines
150
to
154
|
||
| 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,9 @@ | ||
| [tox] | ||
| envlist = py{312}-django{42, 52}, docs, quality | ||
| envlist = py{312}-django{52}, docs, quality | ||
|
Comment on lines
1
to
+2
|
||
|
|
||
| [testenv] | ||
| deps = | ||
| setuptools | ||
| django42: Django>=4.2,<4.3 | ||
| django52: Django>=5.2,<5.3 | ||
| -r{toxinidir}/requirements/test.txt | ||
| commands = | ||
|
|
@@ -35,7 +34,7 @@ setenv = | |
| PYTHONPATH = {toxinidir}/:{toxinidir}/edx_ace | ||
| deps = | ||
| setuptools | ||
| quality: Django>=4.2,<4.3 | ||
| Django>=5.2,<5.3 | ||
| -r{toxinidir}/requirements/test.txt | ||
| -r{toxinidir}/requirements/quality.txt | ||
| allowlist_externals = | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow matrix uses
toxenv: ... django52, buttox.inidoesn't define adjango52environment (it definespy312-django52). WithTOXENV=django52,toxwill fail due to an unknown environment. Align the matrix value with the tox env name (and update the later coverageifthat checksmatrix.toxenv=='django52'accordingly), or add a matchingdjango52tox env.