From 2b5532460d92ec31dce08feabd3ecb98255fe505 Mon Sep 17 00:00:00 2001 From: David Trattnig <david.trattnig@o94.at> Date: Thu, 27 Feb 2020 15:56:30 +0100 Subject: [PATCH] Upgrade to Python 3.7. --- .gitlab-ci.yml | 2 +- requirements.txt | 12 +++++++----- run.sh | 5 +++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 06f2fb6..8404153 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:3.6 +image: python:3.7 stages: - test diff --git a/requirements.txt b/requirements.txt index 096601c..7975fed 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,9 @@ -sqlalchemy==1.3.11 -Flask==0.12.2 -Flask-SQLAlchemy==2.3.2 +sqlalchemy==1.3.13 +Flask==1.1.1 +Flask-SQLAlchemy==2.4.1 mysqlclient==1.3.12 -redis==2.10.6 -mutagen==1.40 +redis==3.4.1 +mutagen==1.44.0 validators==0.12.1 +simplejson==3.17.0 +accessify==0.3.1 \ No newline at end of file diff --git a/run.sh b/run.sh index 960918c..e42b78d 100755 --- a/run.sh +++ b/run.sh @@ -1,7 +1,8 @@ #/usr/bin/bash mode="engine" +debug"--debug" #debug="--debug --verbose" -debug="" + if [ -n "$1" ]; then if [[ $1 =~ ^(engine|lqs)$ ]]; then @@ -12,7 +13,7 @@ fi echo "[ Run mode=$mode ]" if [ $mode == "engine" ]; then - /usr/bin/python3.6 aura.py + /usr/bin/python3.7 aura.py fi if [ $mode == "lqs" ]; then -- GitLab