FEAT: Support Django 6.1 - enable in CI and packaging - #564
Merged
Gaurav Sharma (bewithgaurav) merged 2 commits intoAug 7, 2026
Conversation
Adds Django 6.1 (now GA) to the test matrix: py{312,313,314}-django61 tox env
(django>=6.1,<6.2), matrix rows on the Windows and Linux ADO jobs, the
install_requires cap lifted to <6.2 so the package install doesn't downgrade
Django during tox, and the Framework :: Django :: 6.1 classifier. All existing
Django versions are retained.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot started reviewing on behalf of
Gaurav Sharma (bewithgaurav)
August 7, 2026 06:52
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Enables end-to-end CI and packaging metadata for Django 6.1 support in mssql-django, aligning tox environments, Azure Pipelines matrices, and PyPI requirements/classifiers so Django 6.1 is exercised and installable without being downgraded.
Changes:
- Add a
django61tox factor withdjango>=6.1,<6.2and include it in the envlist for Python 3.12–3.14. - Extend Azure Pipelines Windows and Linux job matrices to run the new
py{312,313,314}-django61tox environments. - Update packaging metadata to allow
django>=3.2,<6.2and include theFramework :: Django :: 6.1classifier.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| tox.ini | Adds Django 6.1 tox environments for Python 3.12–3.14. |
| setup.py | Lifts Django upper bound to <6.2 and adds the Django 6.1 trove classifier. |
| azure-pipelines.yml | Adds Django 6.1 runs to both Windows and Linux CI matrices via the new tox envs. |
gargsaumya
approved these changes
Aug 7, 2026
Jahnvi Thakkar (jahnvi480)
approved these changes
Aug 7, 2026
📊 Code Coverage Report
Diff CoverageDiff: dev...HEAD, staged and unstaged changesNo lines with coverage information in this diff. 📋 Files Needing Attention📉 Files with overall lowest coverage (click to expand)- mssql/client.py: 19.5% (41 lines)
- mssql/__init__.py: 50.0% (2 lines)
- mssql/creation.py: 56.8% (74 lines)
- mssql/base.py: 68.3% (514 lines)
- mssql/operations.py: 78.8% (396 lines)
- mssql/compiler.py: 79.2% (644 lines)
- mssql/functions.py: 83.2% (428 lines)
- mssql/schema.py: 86.1% (719 lines)
- mssql/introspection.py: 90.2% (133 lines)
- mssql/features.py: 98.9% (88 lines)🔗 Quick Links
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AB#46928
GitHub Issue: #551
capstone for Django 6.1 compatibility support. enables 6.1 (now GA) across CI and packaging, on top of the compatibility fixes already merged (#553, #555, #556, #557, #563).
py{312,313,314}-django61env,django>=6.1,<6.2(resolves to 6.1 GA).requires-python >= 3.12).install_requirescap lifted to<6.2so the tox package install doesn't downgrade Django off 6.1, plus theFramework :: Django :: 6.1classifier.all existing Django versions (3.2 through 6.0) are retained. this is the PR whose CI actually exercises 6.1 end to end; the fix PRs before it were version-gated and inert on the pre-6.1 matrix.