Skip to content

Commit

Permalink
Fix typo in setup.py (#746)
Browse files Browse the repository at this point in the history
This PR fixes typo I made `extras_requires` -> `extras_require`

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Keith Kraus (https://github.com/kkraus14)

URL: #746
  • Loading branch information
galipremsagar authored Mar 31, 2021
1 parent ff82ebb commit befea87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def get_cuda_version_from_header(cuda_include_dir):
],
# Include the separately-compiled shared library
setup_requires=["Cython>=0.29,<0.30"],
extras_requires={"test": ["pytest", "pytest-xdist"]},
extras_require={"test": ["pytest", "pytest-xdist"]},
ext_modules=extensions,
packages=find_packages(include=["rmm", "rmm.*"]),
package_data=dict.fromkeys(
Expand Down

0 comments on commit befea87

Please sign in to comment.