-
Notifications
You must be signed in to change notification settings - Fork 152
Update supported Python, Django and DRF support versions #206
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?
Conversation
251fcfc to
4e88758
Compare
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.
Pull Request Overview
This PR updates the supported Python, Django, and Django Rest Framework versions to align with current releases and drop end-of-life versions. The changes modernize the project's compatibility matrix by adding support for newer versions while removing deprecated ones.
- Added support for Python 3.14, Django 5.2, and DRF 3.16
- Removed support for Python 3.9 and Django 5.0 (end-of-life versions)
- Updated CI workflows and PostgreSQL service version to support the new requirements
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tests/requirements.txt | Updated Django requirement from 2.2-3.2 to 4.2+ and DRF from 3.12.4-3.13 to 3.16+ |
| setup.py | Updated Python and Django version classifiers, removing 3.9 and Django 5.0, adding 3.14 and Django 5.2 |
| README.md | Added new compatibility table row for version 1.6 with updated version support matrix |
| CHANGELOG.md | Documented all version support changes and infrastructure updates |
| .github/workflows/test.yml | Updated CI matrix to test Python 3.10-3.14, Django 4.2/5.1/5.2, and DRF 3.16 |
| .github/workflows/test-postgres.yml | Updated PostgreSQL service to version 14 and aligned test matrix with main workflow |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
Pull Request Overview
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
christophbuermann
left a comment
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.
Approved. 👍
This pull request updates the supported versions for Django, Django Rest Framework (DRF), and Python across the project, ensuring compatibility with the latest releases and removing support for older versions. The changes affect CI workflows, documentation, package metadata, and test requirements.
Version support updates:
.github/workflows/test.yml,.github/workflows/test-postgres.yml).README.mdto reflect support for Django 5.2, DRF 3.16, and Python 3.14 (noting that Python 3.14 is forward-compatible but not yet officially supported by Django).Package metadata and test requirements:
setup.pyclassifiers to include Django 5.2 and Python 3.14, and removed references to Django 5.0 and Python 3.9.tests/requirements.txtto require Django 4.2+ and DRF 3.16+.