diff --git a/Pipfile b/Pipfile index 75f8681..c9c9c93 100644 --- a/Pipfile +++ b/Pipfile @@ -28,3 +28,4 @@ allow_prereleases = true [scripts] test = "sh -c \"coverage erase && pytest && coverage html && echo Coverage report in /tmp/coverage_report/django-memcache-status/index.html\"" cleanup = "sh -c \"isort -rc memcache_status && black --skip-string-normalization --line-length=80 --exclude='/(migrations)/' memcache_status\"" +testserver = "sh -c \"django-admin migrate --noinput && django-admin runserver\"" \ No newline at end of file diff --git a/README.rst b/README.rst index 0c1c78d..4b90203 100644 --- a/README.rst +++ b/README.rst @@ -107,7 +107,7 @@ To test a specific cache backend define it in the env variable:: Changelog ========= -**(master):** +**v2.2 (2020-02-05):** - Compatibility and tests for Django 2.2 and 3.0, and Python 3.8. - Use pytest for testing. diff --git a/setup.cfg b/setup.cfg index b6991d9..dd01e31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-memcache-status -version = 2.1 +version = 2.2 description = A django application that displays the load and some other statistics about your memcached instances in the admin. diff --git a/tox.ini b/tox.ini index f95ffc3..83c762a 100644 --- a/tox.ini +++ b/tox.ini @@ -36,7 +36,7 @@ deps= django-20: django==2.0.* django-21: django==2.1.* django-22: django==2.2.* - django-30: django==3.0a1 + django-30: django==3.0.* [testenv:coverage_setup] basepython=python3.6