summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-17 11:05:03 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-07-17 11:08:39 +0200
commit474f65406fe2e568482d83db2ea94c0409afa039 (patch)
treeaaf5566cfcc8c03bdd35ff710eb9fe1b94b62921
parent32e22f0531d377fd81197080d63f247b799d9195 (diff)
[3.1.x] Pinned asgiref to 3.2 series with minimum version to 3.2.10.
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt2
-rw-r--r--docs/releases/3.1.txt3
-rw-r--r--setup.cfg2
-rw-r--r--tests/requirements/py3.txt2
4 files changed, 6 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index deaa5a0b19..13cc841f25 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_ 3.2+ (required)
+* asgiref_ 3.2.10+ (required)
* bcrypt_
* docutils_
* geoip2_
diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt
index 530486ba6d..a9843f638b 100644
--- a/docs/releases/3.1.txt
+++ b/docs/releases/3.1.txt
@@ -698,6 +698,9 @@ Miscellaneous
* The :ttag:`{% localize off %} <localize>` tag and :tfilter:`unlocalize`
filter no longer respect :setting:`DECIMAL_SEPARATOR` setting.
+* The minimum supported version of ``asgiref`` is increased from 3.2 to
+ 3.2.10.
+
.. _deprecated-features-3.1:
Features deprecated in 3.1
diff --git a/setup.cfg b/setup.cfg
index 37deba46ef..85ae012b6a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -40,7 +40,7 @@ scripts = django/bin/django-admin.py
include_package_data = true
zip_safe = false
install_requires =
- asgiref >= 3.2
+ asgiref ~= 3.2.10
pytz
sqlparse >= 0.2.2
diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt
index 65da21bc0e..47ec6a79bf 100644
--- a/tests/requirements/py3.txt
+++ b/tests/requirements/py3.txt
@@ -1,4 +1,4 @@
-asgiref >= 3.2
+asgiref ~= 3.2.10
argon2-cffi >= 16.1.0
bcrypt
docutils