Skip to content

Commit

Permalink
Pytest is a test-requirement not a runtime requirement
Browse files Browse the repository at this point in the history
Installing pycuda shouldn't bring in a test runtime, only
when you are planning to run the test suite of pycuda should
this be brought in.
  • Loading branch information
harlowja committed Jul 11, 2019
1 parent edc50bb commit 950a596
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,15 @@ def main():

install_requires=[
"pytools>=2011.2",
"pytest>=2",
"decorator>=3.2.0",
"appdirs>=1.4.0",
"mako",
],

test_requires=[
"pytest>=2",
],

ext_package="pycuda",
ext_modules=[
ExtensionUsingNumpy("_driver",
Expand Down

0 comments on commit 950a596

Please sign in to comment.