From eb815a8171a881ef2326c4e33a6c30386f33fc08 Mon Sep 17 00:00:00 2001 From: Xavier Bustamante Talavera Date: Thu, 21 Jun 2018 18:10:19 +0200 Subject: [PATCH] Fix more installation issues --- ereuse_devicehub/config.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ereuse_devicehub/config.py b/ereuse_devicehub/config.py index 98f9cb93..5bfcd079 100644 --- a/ereuse_devicehub/config.py +++ b/ereuse_devicehub/config.py @@ -30,7 +30,7 @@ class DevicehubConfig(Config): BenchmarkProcessorSysbenchDef, BenchmarkRamSysbenchDef } PASSWORD_SCHEMES = {'pbkdf2_sha256'} # type: Set[str] - SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/devicehub' # type: str + SQLALCHEMY_DATABASE_URI = 'postgresql://dhub:ereuse@localhost/devicehub' # type: str MIN_WORKBENCH = StrictVersion('11.0') # type: StrictVersion """ The minimum algorithm_version of eReuse.org Workbench that this Devicehub diff --git a/setup.py b/setup.py index 4c37d65e..bae74141 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup setup( name="ereuse-devicehub", - version='0.2.0a5', + version='0.2.0a6', packages=find_packages(), url='https://github.com/ereuse/devicehub-teal', license='Affero',