Skip to content

Commit

Permalink
build: add support for python newer versions in CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed Apr 19, 2024
1 parent 8a3b5f8 commit 8e18b93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,12 @@ def get_version(*file_paths):
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-django{32,42}
envlist = py{38,311,312}-django{32,42}

[testenv]
skipsdist = True
Expand Down

0 comments on commit 8e18b93

Please sign in to comment.