Fix more installation issues

This commit is contained in:
Xavier Bustamante Talavera 2018-06-21 18:10:19 +02:00
parent 27afad7312
commit eb815a8171
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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',