Skip to content

Commit

Permalink
Remove upper constraint for Django (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
M. Zulqarnain authored Jan 12, 2021
1 parent cb0fc8b commit 3ec9326
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: ['django22','quality','docs']
toxenv: ['django22','django30','quality','docs']

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion celery_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Code to support working with celery.
"""

__version__ = '0.5.6'
__version__ = '0.5.7'

default_app_config = 'celery_utils.apps.CeleryUtilsConfig' # pylint: disable=invalid-name
2 changes: 0 additions & 2 deletions celery_utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import logging

from django.db import models
from django.utils.encoding import python_2_unicode_compatible

from celery import current_app
from jsonfield import JSONField
Expand All @@ -17,7 +16,6 @@
log = logging.getLogger(__name__)


@python_2_unicode_compatible
class FailedTask(TimeStampedModel):
"""
Representation of tasks that have failed.
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

future
celery
Django >= 1.11 , <2.3
Django >= 1.11
django-model-utils
jsonfield2

0 comments on commit 3ec9326

Please sign in to comment.