Skip to content

Commit

Permalink
Update: bump all Python dependencies to latest version
Browse files Browse the repository at this point in the history
While at it, switch to Python 3.8, and to the "slim" version.
For the "alpine" version pip cannot download the precompiled
binaries, which means that it needs gcc and friends to build
them. This is pretty much unwanted.
Switching to "slim" means pip can download the precompiled
binaries, resolving the issue.
  • Loading branch information
TrueBrain committed Jan 12, 2020
1 parent d4db46e commit b6ed409
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is a multi-stage Docker build

# Create the downloads collection
FROM python:3.6-alpine as collection
FROM python:3.8-slim as collection

WORKDIR /source/

Expand Down
11 changes: 6 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
aiohttp==3.4.4
aiohttp==3.6.2
async-timeout==3.0.1
attrs==18.2.0
attrs==19.3.0
chardet==3.0.4
idna==2.8
idna-ssl==1.1.0
multidict==4.5.2
xmltodict==0.11.0
yarl==1.3.0
multidict==4.7.4
typing-extensions==3.7.4.1
xmltodict==0.12.0
yarl==1.4.2

0 comments on commit b6ed409

Please sign in to comment.