Skip to content

Commit

Permalink
Minor fixes for travis builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhuramachandran committed Dec 2, 2018
1 parent b491836 commit 9931af8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ install:
- conda config --add channels conda-forge
- conda config --add channels defaults
- conda install -c conda-forge pocl pyopencl cython numpy
- conda install -c defaults virtualenv
- python -c 'import pyopencl as cl'
- pip install -r requirements.txt
- python setup.py develop
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
from setuptools import setup, find_packages


Expand All @@ -10,6 +11,8 @@ def get_version():


install_requires = ['mako', 'pytools', 'cython', 'numpy', 'pytest']
if sys.version_info[0] < 3:
install_requires += ['mock>=1.0']
tests_require = ['pytest']

classes = '''
Expand Down

0 comments on commit 9931af8

Please sign in to comment.