Skip to content
Snippets Groups Projects
Commit d271fbc0 authored by David Trattnig's avatar David Trattnig
Browse files

Upgrade to Python 3.7.

parent 1c21abc5
No related branches found
No related tags found
No related merge requests found
image: python:3.6
image: python:3.7
stages:
- test
......
#!/usr/bin/python3.6
#!/usr/bin/python3.7
#
# engine
......@@ -32,6 +32,7 @@ import unittest
from pathlib import Path
from flask import request, render_template, Flask, Response
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.ext.declarative import declarative_base
......
#!/usr/bin/python3
#!/usr/bin/python3.7
#
# engine
#
......
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
#/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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment