Skip to content

Commit

Permalink
Silly workaround, but this might stop RTD from failing at the install…
Browse files Browse the repository at this point in the history
… because of SciPy's stupid setup.py
  • Loading branch information
bartvm committed Jan 17, 2015
1 parent 4a2ada0 commit 83b5ba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
setup(
name='blocks',
version=blocks.__version__,
description='Toolbox for building machine learning models with Theano',
description='A Theano framework for building and training neural networks',
long_description=long_description,
url='https://github.com/bartvm/blocks',
author='University of Montreal',
Expand All @@ -33,7 +33,7 @@
],
keywords='theano machine learning neural networks deep learning',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=['numpy', 'scipy', 'theano', 'six'],
install_requires=['numpy', 'theano', 'six'],
extras_require={
'test': ['nose', 'nose2'],
},
Expand Down

0 comments on commit 83b5ba7

Please sign in to comment.