Update uvloop to 0.12.2 (#22681)

This commit is contained in:
Pascal Vizeli 2019-04-03 12:20:05 +02:00 committed by GitHub
parent 7c5846aed2
commit 58a89640bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ COPY requirements_all.txt requirements_all.txt
# Uninstall enum34 because some dependencies install it but breaks Python 3.4+.
# See PR #8103 for more info.
RUN pip3 install --no-cache-dir -r requirements_all.txt && \
pip3 install --no-cache-dir mysqlclient psycopg2 uvloop==0.11.3 cchardet cython
pip3 install --no-cache-dir mysqlclient psycopg2 uvloop==0.12.2 cchardet cython
# BEGIN: Development additions