-
-
Notifications
You must be signed in to change notification settings - Fork 216
[deps] Added support for djangorestframework 3.17.0 #348
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
Changes from all commits
342dadd
0d9eee4
41c9b42
c8a7f24
9c8c508
a810283
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 |
|---|---|---|
|
|
@@ -2,9 +2,9 @@ | |
| envlist = | ||
| py{39,310}-django{42,50}-djangorestframework{314}{,-pytest} | ||
| py{311}-django{42}-djangorestframework{314}{,-pytest} | ||
| py{310,311,312,313}-django{50}-djangorestframework{315,316}{,-pytest} | ||
| py{310,311,312,313}-django{51}-djangorestframework{315,316}{,-pytest} | ||
| py{310,311,312,313}-django{52}-djangorestframework{315,316}{,-pytest} | ||
| py{310,311,312,313}-django{50}-djangorestframework{315,316,317}{,-pytest} | ||
| py{310,311,312,313}-django{51}-djangorestframework{315,316,317}{,-pytest} | ||
| py{310,311,312,313}-django{52}-djangorestframework{315,316,317}{,-pytest} | ||
|
Comment on lines
+5
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Tox envlist includes broader coverage than CI matrix. The tox configuration defines DRF 3.17 tests for Python 3.10, 3.11, 3.12, and 3.13 across Django 5.0, 5.1, and 5.2. However, the CI matrix in Consider aligning the CI matrix to test more combinations, or reduce the tox envlist to match what's actually tested in CI. 🤖 Prompt for AI Agents |
||
|
|
||
| [testenv] | ||
| usedevelop = true | ||
|
|
@@ -25,6 +25,7 @@ deps = | |
| djangorestframework314: djangorestframework~=3.14.0 | ||
| djangorestframework315: djangorestframework~=3.15.0 | ||
| djangorestframework316: djangorestframework~=3.16.0 | ||
| djangorestframework317: djangorestframework~=3.17.0 | ||
| -rrequirements-test.txt | ||
| pytest: pytest | ||
| pytest: pytest-django | ||
|
|
||
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.
DRF 3.17 CI matrix coverage is incomplete.
The CI matrix for DRF 3.17 only tests Python 3.11 and 3.12 with Django 5.0 and 5.1. However,
tox.inidefines combinations for Python 3.10, 3.11, 3.12, 3.13 across Django 5.0, 5.1, and 5.2.Missing entries:
py310-django{50,51,52}-djangorestframework317py313-django{50,51,52}-djangorestframework317py{310,311,312,313}-django52-djangorestframework317Additionally, DRF 3.16 is also missing Django 5.2 coverage while DRF 3.15 has it.
Suggested additions to complete DRF 3.17 coverage
🤖 Prompt for AI Agents