diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-07-23 10:07:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 10:07:35 +0200 |
commit | d74e1c0521e7473d660a5002e116d0049cce398f (patch) | |
tree | a49c1536442385974ed14531a271c42118105828 | |
parent | eb815938750bed7e4f8f9ec1974d60e4994a9421 (diff) | |
download | django-d74e1c0521e7473d660a5002e116d0049cce398f.tar.gz |
[2.2.x] Pinned geoip2 < 4.0.0 in test requirements.
geoip2 4+ doesn't support Python 3.5.
-rw-r--r-- | tests/requirements/py3.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index e48303d3ed..5733df66e0 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,7 +1,7 @@ argon2-cffi >= 16.1.0 bcrypt docutils -geoip2 +geoip2 < 4.0.0 jinja2 >= 2.9.2 numpy Pillow != 5.4.0 |