1
0
Fork 0

Update python version from 2.7 to 3.8 in Dockerfile (#1181)

* Update python version from 2.7 to 3.8 in Dockerfile

* Update AUTHORS and changelog.rst
This commit is contained in:
Igor Kim 2020-05-11 22:51:23 +06:00 committed by GitHub
parent 901ef31fd1
commit b994c75701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -108,6 +108,7 @@ Contributors:
* Gantsev Denis
* Stephano Paraskeva
* Panos Mavrogiorgos (pmav99)
* Igor Kim (igorkim)
Creator:
--------

View File

@ -1,4 +1,4 @@
FROM python:2.7
FROM python:3.8
COPY . /app
RUN cd /app && pip install -e .

View File

@ -6,6 +6,7 @@ Features:
* Make the output more compact by removing the empty newline. (Thanks: `laixintao`_)
* Add support for using [pspg](https://github.com/okbob/pspg) as a pager (#1102)
* Update python version in Dockerfile
Bug fixes:
----------