diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-11-20 15:13:28 +0100 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-11-20 15:13:28 +0100 |
| commit | 0e587457164be46034b65c1868f9c71024c50425 (patch) | |
| tree | 35bcf276b9a95b4c3939283a2bc2c1a9eca4b907 | |
| parent | 5f24b18e6cf052b7b6175d9d024bbd206c247be5 (diff) | |
[3.0.x] Pinned asgiref to 3.2 series.
Backport of 36453526d3e1a5829864f106d6baa0ebdb20537e from master
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | tests/requirements/py3.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 8a126eed55..e9668793a3 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -271,7 +271,7 @@ If you want to run the full suite of tests, you'll need to install a number of dependencies: * argon2-cffi_ 16.1.0+ -* asgiref_ (required) +* asgiref_ 3.2+ (required) * bcrypt_ * docutils_ * geoip2_ @@ -83,7 +83,7 @@ setup( entry_points={'console_scripts': [ 'django-admin = django.core.management:execute_from_command_line', ]}, - install_requires=['pytz', 'sqlparse >= 0.2.2', 'asgiref'], + install_requires=['pytz', 'sqlparse >= 0.2.2', 'asgiref ~= 3.2'], extras_require={ "bcrypt": ["bcrypt"], "argon2": ["argon2-cffi >= 16.1.0"], diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index 3e9b48821a..fd677713f8 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,4 +1,4 @@ -asgiref +asgiref ~= 3.2 argon2-cffi >= 16.1.0 bcrypt docutils |
