From 62de27a12db881995f68a77f7787563a51307fdf Mon Sep 17 00:00:00 2001 From: Max Pumperla Date: Mon, 27 Aug 2018 12:13:58 +0200 Subject: [PATCH] bump version --- .travis.yml | 2 +- code/setup.py | 13 +++++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 889be60a..7125bbf4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ sudo: required dist: trusty language: python python: - - "2.7" + # - "2.7" problems with np_utils in keras - "3.4" before_install: - cd code diff --git a/code/setup.py b/code/setup.py index b5e0c376..f5422c99 100644 --- a/code/setup.py +++ b/code/setup.py @@ -2,10 +2,19 @@ from setuptools import find_packages setup(name='dlgo', - version='0.1', + version='0.2', description='Deep Learning and the Game of Go', url='http://github.com/maxpumperla/deep_learning_and_the_game_of_go', - install_requires=['numpy<=1.14.5', 'tensorflow', 'keras', 'gomill', 'Flask>=0.10.1', 'Flask-Cors', 'future', 'h5py', 'six'], + install_requires=[ + 'numpy<=1.14.5', + 'tensorflow==1.10.1', + 'keras==2.2.2', + 'gomill', + 'Flask>=0.10.1', + 'Flask-Cors', + 'future', + 'h5py', + 'six'], license='MIT', packages=find_packages(), zip_safe=False)