From 32b0daab25691d6c217ca8fefa53f40b1e014369 Mon Sep 17 00:00:00 2001 From: Olivier Leger Date: Wed, 4 Nov 2020 10:54:31 -0500 Subject: [PATCH] Bump version to 3.5.0 --- helpers/config.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/helpers/config.py b/helpers/config.py index ee3abe1..baedba5 100644 --- a/helpers/config.py +++ b/helpers/config.py @@ -33,7 +33,7 @@ class Config(with_metaclass(Singleton)): DEFAULT_NGINX_PORT = '80' DEFAULT_NGINX_HTTPS_PORT = '443' KOBO_DOCKER_BRANCH = '2.020.45' - KOBO_INSTALL_VERSION = '3.4.0' + KOBO_INSTALL_VERSION = '3.5.0' def __init__(self): self.__config = self.read_config() diff --git a/setup.py b/setup.py index c9c425d..952c7ab 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,8 @@ setup( name='KoBoInstall', version=Config.KOBO_INSTALL_VERSION, - packages=find_packages(exclude=['tests']), # Include all the python modules except `tests`, + # Include all the python modules except `tests`, + packages=find_packages(exclude=['tests']), url='https://github.com/kobotoolbox/kobo-install/', license='', author='KoBoToolbox',