-
Notifications
You must be signed in to change notification settings - Fork 663
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
Remove EOL Python, Django and DRF versions #754
Conversation
Hey @Andrew-Chen-Wang, Can you take a look at this PR? Thanks! |
Python 3.12 has been released and This is not blocking, but this PR will ease python 3.12 upgrade 🙂 |
drf-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11'] | ||
django-version: ['3.2', '4.1', '4.2'] | ||
drf-version: ['3.12', '3.13', '3.14'] |
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.
does drf 3.14 support django 4.2?
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.
You're right, it does not officially. However, based on the conversations on DRF (encode/django-rest-framework#8942) it seems nothing breaks with Django 4.2 most of the times. Moreover, DRF 3.14 is already being tested with Django 4.2 here on master.
|
love it thank you! |
Remove all no longer supported Python, Django and DRF versions. Also fixes #684 as after Python 3.8 no workaround is necessary.
Closes #702