Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpumperla committed Aug 27, 2018
1 parent b077d19 commit 62de27a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 11 additions & 2 deletions code/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 62de27a

Please sign in to comment.