Skip to content

Add compatibility with Python 3.10+ and Django 3+ #54

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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix a typo, bump version inside CHANGELOG
  • Loading branch information
Nikita Grygoriev committed Nov 17, 2022
commit 56a473a0e3942a974eca5119b22bf97d9c57241c
9 changes: 7 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Changelog
=========

0.6.3 (unreleased)
0.6.4 (2022-11-17)
------------------

- Nothing changed yet.
- compatibility with Django 4.0 added

0.6.3 (2022-01-27)
------------------

- compatibility with Django 3.0 added


0.6.2 (2017-12-18)
Expand Down
2 changes: 1 addition & 1 deletion django_babel/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def extract_django(fileobj, keywords, comment_tags, options):
yield (
lineno,
'pgettext',
[smart_str(message_context), smart_text(g)],
[smart_str(message_context), smart_str(g)],
[],
)
message_context = None
Expand Down