diff --git a/Dockerfile.server b/Dockerfile.server index ab6035744..0d0e16203 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -1,5 +1,5 @@ FROM ubuntu:16.04 -MAINTAINER Fabian Chan +MAINTAINER CodaLab Worksheets ENV DEBIAN_FRONTEND noninteractive diff --git a/codalab/common.py b/codalab/common.py index ee05836e0..6f4070bc3 100644 --- a/codalab/common.py +++ b/codalab/common.py @@ -8,7 +8,7 @@ # Increment this on the develop branch when develop is merged into master. # http://semver.org/ -CODALAB_VERSION = '0.2.31' +CODALAB_VERSION = '0.2.32' class IntegrityError(ValueError): diff --git a/setup.py b/setup.py index b2ce44738..77e5f83ee 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def get_requirements(*requirements_file_paths): - requirements = ['codalabworker>=0.2.31'] + requirements = ['codalabworker>=0.2.32'] for requirements_file_path in requirements_file_paths: with open(requirements_file_path) as requirements_file: for line in requirements_file: diff --git a/worker/setup.py b/worker/setup.py index f1a3e3c89..1ee6d88e8 100644 --- a/worker/setup.py +++ b/worker/setup.py @@ -14,10 +14,9 @@ def get_requirements(*requirements_file_paths): setup( name='codalabworker', - version='0.2.31', + version='0.2.32', description='Worker for CodaLab, a platform for reproducible computation', - long_description= - 'To use your own hardware in CodaLab Worksheets, visit https://github.com/codalab/codalab-worksheets/wiki/Execution#running-your-own-worker. You can find the code at https://github.com/codalab/codalab-cli.', + long_description='To use your own hardware in CodaLab Worksheets, visit https://github.com/codalab/codalab-worksheets/wiki/Execution#running-your-own-worker. You can find the code at https://github.com/codalab/codalab-cli.', url='https://github.com/codalab/codalab-cli', author='CodaLab', author_email='codalab.worksheets@gmail.com',