Skip to content

Commit

Permalink
chore: add python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
arbimaq committed Sep 17, 2024
1 parent 501b3fd commit 62397ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.11']
python-version: ['3.11', '3.12']
toxenv: [django32, django42, quality, csslint, eslint]

steps:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import find_packages, setup


version = '1.4.1'
version = '1.5.1'
description = __doc__.strip().split('\n')[0]
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as file_in:
Expand Down Expand Up @@ -118,6 +118,7 @@ def is_requirement(line):
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
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 = csslint,eslint,py311-django{32,42},quality
envlist = csslint,eslint,py311-django{42},py312-django{42},quality

[testenv]
deps =
Expand Down

0 comments on commit 62397ff

Please sign in to comment.