From 6e39960fbbc19fe7267584980c5dabde41a01082 Mon Sep 17 00:00:00 2001 From: Adelina Lintuluoto Date: Thu, 23 Jul 2020 09:22:57 +0100 Subject: [PATCH] migrate to python 3.8 --- .travis.yml | 1 + Dockerfile | 2 +- requirements.txt | 1 - setup.py | 1 - 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4f751a..8106a41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ cache: python: - "3.6" + - "3.8" services: - docker diff --git a/Dockerfile b/Dockerfile index 27783ef..f69eecf 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 \ autoconf \ diff --git a/requirements.txt b/requirements.txt index 6e00c6e..88073b8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,6 @@ checksumdir==1.1.9 # via packtivity, reana-commons, yadage click==7.1.2 # via packtivity, reana-commons, reana-workflow-engine-yadage (setup.py), yadage, yadage-schemas cryptography==2.9.2 # via pyopenssl, requests decorator==4.4.2 # via jsonpath-rw, networkx -enum34==1.1.10 # via reana-workflow-engine-yadage (setup.py) glob2==0.7 # via packtivity, yadage graphviz==0.14 # via reana-workflow-engine-yadage (setup.py) idna==2.8 # via jsonschema, requests diff --git a/setup.py b/setup.py index b50ff84..0a52b44 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,6 @@ install_requires = [ "adage==0.10.1", # FIXME remove once yadage-schemas solves yadage deps. "click>=7", - "enum34>=1.1.6", "graphviz>=0.12", # FIXME needed only if yadage visuale=True. "jq==0.1.6", "networkx==1.11",