Skip to content

Commit

Permalink
* Upgrade uvloop dependency to 0.13.0 to hopefully solve [Fatal error…
Browse files Browse the repository at this point in the history
… on transport TCPTransport](MagicStack/uvloop#244) kind of errors. Dockerfile uses Python 3.7.4
  • Loading branch information
Benjamin Sergeant committed Aug 24, 2019
1 parent ea06728 commit 740ded9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion DOCKER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.9
1.6.10
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 740ded9

Please sign in to comment.