Skip to content

Commit

Permalink
Remove setup/test requires.
Browse files Browse the repository at this point in the history
They seem to just complicate matters.
  • Loading branch information
prabhuramachandran committed Dec 2, 2018
1 parent 995ff0e commit 0fbf061
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ def setup_package():
exec(compile(open(module).read(), module, 'exec'), info)

# The requirements.
setup_requires = [
'cyarray', 'numpy', 'Cython>=0.20', 'setuptools>=6.0', 'mpi4py>=1.2'
install_requires = [
'cyarray', 'numpy', 'Cython>=0.20', 'setuptools>=6.0', 'mpi4py>=1.2',
'pytest>=3.0'
]

install_requires = setup_requires + ['pytest>=3.0']
ext_modules = get_parallel_extensions()
if MODE != 'info' and _is_cythonize_default():
# Cython >= 0.25 uses cythonize to compile the extensions. This
Expand Down Expand Up @@ -308,8 +308,6 @@ def setup_package():
url='http://github.com/pypr/pyzoltan',
license="BSD",
keywords="Cython Zoltan Dynamic load balancing",
setup_requires=['pytest-runner'] + setup_requires,
tests_require=['pytest'],
packages=find_packages(),
package_data={
'': ['*.pxd', '*.mako', '*.rst']
Expand Down

0 comments on commit 0fbf061

Please sign in to comment.