diff --git a/README.md b/README.md index e7ae951..de3114c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ A Django helper to monitor jobs running Celery tasks * [Django][] >= 1.11 * [Celery][] >= 4.0.2 * [echoices][] >= 2.6.0 -* [autoslugged][] >= 2.0.0 +* [autoslug][] >= 1.9.7 ## Installation @@ -33,7 +33,7 @@ A Django helper to monitor jobs running Celery tasks 1. Run `pip install django-celery-growthmonitor` ### Using the source code -1. Make sure [`pandoc`](http://pandoc.org/index.html) is installed +1. Make sure [pandoc][] is installed 1. Run `./pypi_packager.sh` 1. Run `pip install dist/django_celery_growthmonitor-x.y.z-[...].wheel`, where `x.y.z` must be replaced by the actual version number and `[...]` depends on your packaging configuration @@ -87,4 +87,5 @@ class MyJobAdmin(AJobAdmin): [django]: https://www.djangoproject.com/ "Django" [celery]: http://www.celeryproject.org/ "Celery" [echoices]: https://github.com/mbourqui/django-echoices "django-echoices" - [autoslugged]: https://github.com/mbourqui/django-autoslugged "django-autoslugged" \ No newline at end of file + [autoslug]: https://github.com/justinmayer/django-autoslug "django-autoslug" + [pandoc]: http://pandoc.org/index.html "pandoc" \ No newline at end of file diff --git a/celery_growthmonitor/models/job.py b/celery_growthmonitor/models/job.py index 93c306e..226f96f 100644 --- a/celery_growthmonitor/models/job.py +++ b/celery_growthmonitor/models/job.py @@ -158,7 +158,7 @@ class AJob(models.Model): http://stackoverflow.com/questions/16655097/django-abstract-models-versus-regular-inheritance#16838663 """ - from autoslugged import AutoSlugField + from autoslug import AutoSlugField from echoices.enums import EChoice from echoices.fields import make_echoicefield diff --git a/setup.py b/setup.py index 4500fc0..87e9c3f 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ "Django>=1.11.29", "django-echoices>=2.6.0", "celery>=4.0.2", - "django-autoslugged>=2.0.0.dev0", + "django-autoslug>=1.9.7", ], keywords="django utility celery celery-tasks", classifiers=[