Skip to content

Commit

Permalink
Updated min Django version.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisspen committed Jun 26, 2024
1 parent 1d16e71 commit 50b1f15
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
8 changes: 1 addition & 7 deletions chroniker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
from django import VERSION as DJANGO_VERSION


VERSION = (1, 0, 23)
VERSION = (1, 0, 24)
__version__ = '.'.join(map(str, VERSION))

if DJANGO_VERSION < (3, 2):
default_app_config = 'chroniker.apps.ChronikerConfig'
2 changes: 1 addition & 1 deletion requirements-min-django.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Django>=3.0
Django>=3.2
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ def get_reqs(*fns):
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
],
zip_safe=False,
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38}-django{30,42}
envlist = py{38}-django{32,42}
recreate = True

[testenv]
Expand All @@ -8,6 +8,6 @@ basepython =
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-test.txt
django30: Django>=3.0,<3.1
django30: Django>=3.2,<3.3
django42: Django>=4.2,<4.3
commands = django-admin.py test --traceback --settings=chroniker.tests.settings chroniker.tests.tests.JobTestCase{env:TESTNAME:}

0 comments on commit 50b1f15

Please sign in to comment.