Skip to content

Commit

Permalink
Adding support for Python 3.11, 3.12 and Django 4.2, 5.0; Dropping su…
Browse files Browse the repository at this point in the history
…pport for Python 3.7 and Django 2.2-3.9
  • Loading branch information
molokov committed Dec 26, 2023
1 parent 67cf3d0 commit 43cf626
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
13 changes: 6 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,29 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
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.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules

[options]
python_requires = >=3.7
python_requires = >=3.8
packages = mezzanine
include_package_data = true
install_requires =
django-contrib-comments >= 2.0
django >= 2.2
django >= 4.0
tzlocal >= 2
bleach[css] >= 5
beautifulsoup4 >= 4.5.3
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39,310}-dj{22,30,31,32,40,41}
py{38,39,310,311,312}-dj{40,41,42,50}
package
lint

Expand All @@ -9,12 +9,10 @@ envlist =
usedevelop = true
deps =
.[testing]
dj22: Django>=2.2, <3
dj30: Django>=3.0, <3.1
dj31: Django>=3.1, <3.2
dj32: Django>=3.2, <3.3
dj40: Django>=4.0, <4.1
dj41: Django>=4.1, <4.2
dj42: Django>=4.2, <4.3
dj50: Django>=5.0, <5.1
commands =
pytest --basetemp="{envtmpdir}" --junitxml="junit/TEST-{envname}.xml" {posargs}

Expand Down

0 comments on commit 43cf626

Please sign in to comment.