Skip to content

Commit

Permalink
feat: Adding python3.11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Apr 9, 2024
1 parent 8a3b5f8 commit de146bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
python-version: ['3.8', '3.11']
toxenv: [django32, django42]

steps:
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,8 @@ def get_version(*file_paths):
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
],
)
2 changes: 1 addition & 1 deletion src/enmerkar_underscore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from markey.machine import tokenize, parse_arguments


__version__ = '2.2.1'
__version__ = '2.3.0'

def extract(fileobj, keywords, comment_tags, options):
"""Extracts translation messages from underscore template files.
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ skipsdist = True
usedevelop = True
deps =
-r{toxinidir}/requirements/tox.txt
django32: Django>=3.2,<3.3
django42: Django>=4.2,<4.3
-e.
commands =
Expand Down

0 comments on commit de146bc

Please sign in to comment.