-
Notifications
You must be signed in to change notification settings - Fork 46
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
Make it better compatibility with Django 3.2 #154
Conversation
@simkimsia I think the issue you are referencing in the PR description is describing a different deprecation. Your PR fixes the default auto field: https://docs.djangoproject.com/en/3.2/releases/3.2/#customizing-type-of-auto-created-primary-keys The issue is about the automatic app config discovery: https://docs.djangoproject.com/en/3.2/releases/3.2/#automatic-appconfig-discovery Both changes come with Django 3.2 and relate to I would also propose to make the changelog entry more precise and really describe the change you made. |
683eddc
to
ca3d986
Compare
@tbrlpld i have changed the changelog and repush a new commit. Please check. Thank you |
@simkimsia "Better compatibility" still seems a bit subjective (which I understand is also only my subjective opinion 😅 ah irony). How about :
|
I'll change to your suggestion It sounds better too. Later tonight I'll push |
📝 Rewrite changelog as result Signed-off-by: KimSia Sim <[email protected]> 📝 UPDATE: changelog to reflect define appconfig field
ca3d986
to
1263fa6
Compare
@tbrlpld done. pls check |
Looks good to me 👍 |
@tbrlpld merge? |
@simkimsia I do not have merge access in the repo. Maybe try mentioning a maintainer. |
@tbrlpld thank you i wasn't aware. @bcdickinson can help? |
Thank you both, great to get this in! @tbrlpld I’ve added you to the project’s maintainers. |
@thibaudcolas thanks for merging. HOw do i become maintainer? and i noticed one of the compatibility tests failed. should i fix it? |
@simkimsia at the moment all of the maintainers are Torchbox employees, although if you see yourself using this project and contributing regularly (big or small) I’m sure we’d consider it. |
Description
Include a default auto field in the
apps.py
as accordance to Django 3.2Related to #153 as it's also about Django 3.2 compatibility but not the exact same issue
Checklist