Replaced OrderedDict with dict#8964
Merged
auvipy merged 1 commit intoencode:masterfrom Apr 30, 2023
Merged
Conversation
terencehonles
added a commit
to terencehonles/djangorestframework-stubs
that referenced
this pull request
May 12, 2023
This change replaces `OrderedDict` with `dict` as done in encode/django-rest-framework#8964. This does not look like it has been released yet, but since this package requires Python 3.8 which is > Python 3.5, which was the last release to need `OrderedDict`, then this change should be safe to merge now. It should also be safe because `dict` is a superclass of `OrderedDict` and should not change anything for users who are using `OrderedDict` still.
sobolevn
pushed a commit
to typeddjango/djangorestframework-stubs
that referenced
this pull request
May 12, 2023
This change replaces `OrderedDict` with `dict` as done in encode/django-rest-framework#8964. This does not look like it has been released yet, but since this package requires Python 3.8 which is > Python 3.5, which was the last release to need `OrderedDict`, then this change should be safe to merge now. It should also be safe because `dict` is a superclass of `OrderedDict` and should not change anything for users who are using `OrderedDict` still.
Situphen
added a commit
to Situphen/zds-site
that referenced
this pull request
Sep 28, 2024
django_rest_framework 3.15.0 a remplacé les OrderedDict par des dict puisque ceux-ci sont maintenant ordonnées depuis Python 3.6 cf. encode/django-rest-framework#8964
philippemilink
pushed a commit
to zestedesavoir/zds-site
that referenced
this pull request
Sep 30, 2024
* Mise à jour triviale des dépendances Python * Mise à jour de Gunicorn * Correction d'un test suite à la mise à jour de django_rest_framework django_rest_framework 3.15.0 a remplacé les OrderedDict par des dict puisque ceux-ci sont maintenant ordonnées depuis Python 3.6 cf. encode/django-rest-framework#8964
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
See discussion: #8736
Also see: #7524