From 740ded9402a88b717b14b281fa7283541ab58483 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Sat, 24 Aug 2019 14:31:04 -0700 Subject: [PATCH] * Upgrade uvloop dependency to 0.13.0 to hopefully solve [Fatal error on transport TCPTransport](https://github.com/MagicStack/uvloop/issues/244) kind of errors. Dockerfile uses Python 3.7.4 --- CHANGELOG.md | 7 +++++++ DOCKER_VERSION | 2 +- Dockerfile | 4 ++-- requirements.txt | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56fb151..b16c58c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.6.10] - 2019-08-24 + +### Changed + +* Upgrade uvloop dependency to 0.13.0 to hopefully solve [Fatal error on transport TCPTransport](https://github.com/MagicStack/uvloop/issues/244) kind of errors. +* Dockerfile uses Python 3.7.4 + ## [1.6.9] - 2019-08-23 ### Fixed diff --git a/DOCKER_VERSION b/DOCKER_VERSION index 15d45d4..1df3b82 100644 --- a/DOCKER_VERSION +++ b/DOCKER_VERSION @@ -1 +1 @@ -1.6.9 +1.6.10 diff --git a/Dockerfile b/Dockerfile index 1c83e6e..5b87d3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7.3-alpine3.10 +FROM python:3.7.4-alpine3.10 RUN pip install --no-cache-dir --upgrade pip @@ -8,7 +8,7 @@ RUN apk add --no-cache gcc musl-dev linux-headers make && \ apk del --no-cache gcc musl-dev linux-headers make RUN ln -sf /home/app/.local/bin/cobra /usr/bin/cobra -RUN addgroup -S app && adduser -S -G app app +RUN addgroup -S app && adduser -S -G app app COPY --chown=app:app . . USER app diff --git a/requirements.txt b/requirements.txt index 15d7b2b..8eb7143 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,5 +9,5 @@ sentry-sdk==0.11.1 tabulate==0.8.3 uhashring==1.1 ujson==1.35 -uvloop==0.12.2 +uvloop==0.13.0 websockets==8.0.2