chore: Update minimum Flask and Django versions - #132
Merged
Conversation
- flask>=0.10 → flask>=2.0 (Python 3.7+ compatible) - django>=1.8.8 → django>=3.2 (LTS, Python 3.8+ compatible) The previous minimums were from 2013/2015 and incompatible with the library's Python 3.9+ requirement.
There was a problem hiding this comment.
Pull request overview
This PR updates the minimum versions of Flask and Django dependencies to ensure compatibility with the library's Python 3.9+ requirement. The previous minimum versions (Flask 0.10 from 2013 and Django 1.8.8 from 2015) were incompatible with Python 3.9+.
Changes:
- Updated Flask minimum version from 0.10 to 2.0 (requires Python 3.7+)
- Updated Django minimum version from 1.8.8 to 3.2 LTS (requires Python 3.8+)
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
miquelbeltran
approved these changes
Jan 19, 2026
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.
Description 📝
Purpose:
Update minimum Flask and Django versions to align with the library's Python 3.9+ requirement.
Approach:
The previous minimums (Flask 0.10 from 2013, Django 1.8.8 from 2015) were incompatible with Python 3.9+. Updated to modern versions that are compatible:
flask>=0.10→flask>=2.0(requires Python 3.7+)django>=1.8.8→django>=3.2(LTS, requires Python 3.8+)Analysis performed:
flask.signals.got_request_exceptionandflaskApp.extensions(available since Flask 0.7)MiddlewareMixin(added in Django 1.10, with fallback)Type of change
chore:Chore task, release or small impact changeUpdates
flaskminimum from 0.10 to 2.0 inpyproject.tomldjangominimum from 1.8.8 to 3.2 inpyproject.tomlRelated issues
Closes #131
Test plan 🧪
Author to check 👓
Reviewer to check ✔️