bump unicodedata2 requirement >= 12.1.0

This commit is contained in:
Cosimo Lupo 2019-10-17 12:15:31 +01:00
parent f939d2dc31
commit 28b685c9c0
No known key found for this signature in database
GPG Key ID: 20D4A261E4A0E642
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
# extension 'brotlipy' on PyPy # extension 'brotlipy' on PyPy
brotli==1.0.7; platform_python_implementation != "PyPy" brotli==1.0.7; platform_python_implementation != "PyPy"
brotlipy==0.7.0; platform_python_implementation == "PyPy" brotlipy==0.7.0; platform_python_implementation == "PyPy"
unicodedata2==12.0.0; python_version < '3.8' and platform_python_implementation != "PyPy" unicodedata2==12.1.0; python_version < '3.8' and platform_python_implementation != "PyPy"
scipy==1.3.1; platform_python_implementation != "PyPy" scipy==1.3.1; platform_python_implementation != "PyPy"
munkres==1.1.2; platform_python_implementation == "PyPy" munkres==1.1.2; platform_python_implementation == "PyPy"
zopfli==0.1.6 zopfli==0.1.6

View File

@ -50,9 +50,9 @@ extras_require = {
# which varies between python versions and may be outdated. # which varies between python versions and may be outdated.
"unicode": [ "unicode": [
# the unicodedata2 extension module doesn't work on PyPy. # the unicodedata2 extension module doesn't work on PyPy.
# Python 3.8 already has Unicode 12, so the backport is not needed. # Python 3.8 already has Unicode 12.1, so the backport is not needed.
( (
"unicodedata2 >= 12.0.0; " "unicodedata2 >= 12.1.0; "
"python_version < '3.8' and platform_python_implementation != 'PyPy'" "python_version < '3.8' and platform_python_implementation != 'PyPy'"
), ),
], ],