Skip to content

Commit

Permalink
Switch back from django-autoslugged to django-autoslug
Browse files Browse the repository at this point in the history
  • Loading branch information
mbourqui committed May 25, 2020
1 parent 97c44d4 commit 253445f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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"
[autoslug]: https://github.com/justinmayer/django-autoslug "django-autoslug"
[pandoc]: http://pandoc.org/index.html "pandoc"
2 changes: 1 addition & 1 deletion celery_growthmonitor/models/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit 253445f

Please sign in to comment.