Skip to content

Commit

Permalink
Add testing for Python 3.13 and Django 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
fdemmer committed Jan 7, 2025
1 parent d199d61 commit 8351994
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
Expand All @@ -38,6 +39,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(),
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[tox]
envlist =
py{38,39,310,311,312}-dj{32,42}-wp{59,60,61}-dyf{8,9,10}
py{39,310,311,312}-dj{32,42}-wp{62}-dyf{10,11}
py{39,310,311,312}-dj{32,42}-wp{63}-dyf{11}
py{310,311,312}-dj{50}-wp{62}-dyf{10,11}
py{310,311,312,313}-dj{51}-wp{62}-dyf{10,11}
py{310,311,312}-dj{50}-wp{63}-dyf{11}
py{310,311,312,313}-dj{51}-wp{63}-dyf{11}

[testenv]
commands = python -m unittest discover
Expand All @@ -19,6 +24,7 @@ deps =
dj32: django~=3.2
dj42: django~=4.2
dj50: django~=5.0
dj51: django~=5.1
wp59: weasyprint~=59.0
wp60: weasyprint~=60.0
wp61: weasyprint~=61.0
Expand Down

0 comments on commit 8351994

Please sign in to comment.