From 00282f29f945dd3bb32ee060aacc39b4de75d2f7 Mon Sep 17 00:00:00 2001 From: Adelina Lintuluoto Date: Thu, 23 Jul 2020 08:39:40 +0100 Subject: [PATCH] migrate to py38 --- .travis.yml | 2 +- AUTHORS.rst | 1 + CHANGES.rst | 1 + Dockerfile | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ada8dd4..30670c0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ cache: - pip python: - - "3.6" + - "3.8" services: - docker diff --git a/AUTHORS.rst b/AUTHORS.rst index a3626476..5f776220 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -3,6 +3,7 @@ Authors The list of contributors in alphabetical order: +- `Adelina Lintuluoto `_ - `Anton Khodak `_ - `Diego Rodriguez `_ - `Dinos Kousidis `_ diff --git a/CHANGES.rst b/CHANGES.rst index 18c98197..364cdcb5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,7 @@ Changes Version master (UNRELEASED) --------------------------- +- Uses python3.8 - Pins all Python dependencies allowing to easily rebuild component images at later times. - Enables workflow restarts. - Enables deletion of workflows in queued state. diff --git a/Dockerfile b/Dockerfile index 60f5162a..7f17d3bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # under the terms of the MIT License; see LICENSE file for more details. # Install base image and its dependencies -FROM python:3.6-slim +FROM python:3.8-slim RUN apt-get update && \ apt-get install -y \ gcc \ diff --git a/setup.py b/setup.py index 608e019b..f9d42a90 100644 --- a/setup.py +++ b/setup.py @@ -98,7 +98,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",